Files
avo/tests/fixedbugs/issue195/issue195_test.go
Michael McLoughlin 4f7179b08e gotypes,tests: test case for issue #195 (#214)
Adds test cases for the bug in #195, similar to #212.

Updates #195
Updates #191
2021-10-30 13:47:55 -07:00

11 lines
167 B
Go

package issue195
import "testing"
//go:generate go run asm.go -out issue195.s -stubs stub.go
func TestIssue195(t *testing.T) {
x := uint64(42)
Issue195(&x, 42)
}