1 2 3 4 5 6 7 8 9 10 11 12
package bug import "testing" func TestCommentEquality(t *testing.T) { c1 := Comment{} c2 := Comment{} if c1 != c2 { t.Fatal() } }