aboutsummaryrefslogtreecommitdiff
path: root/tests/legacy/cgo_filtered/pure_test.go
blob: 02be3d7ac09f3e787df9fd07fc33fe3cc89d033f (plain)
1
2
3
4
5
6
7
8
9
package cgo_filtered

import "testing"

func TestFoo(t *testing.T) {
	if got, want := Value, 42; got != want {
		t.Errorf("got %d; want %d", got, want)
	}
}