comment_test.go

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