xref: /aosp_15_r20/external/bazelbuild-rules_go/tests/legacy/asm_include/foo_test.go (revision 9bb1b549b6a84214c53be0924760be030e66b93a)
1package foo
2
3import "testing"
4
5func TestFoo(t *testing.T) {
6	x := foo()
7	if x != 42 {
8		t.Errorf("got %d; want %d", x, 42)
9	}
10}
11