gotypes,tests: test case for issue #195 (#214)

Adds test cases for the bug in #195, similar to #212.

Updates #195
Updates #191
This commit is contained in:
Michael McLoughlin
2021-10-30 13:47:55 -07:00
committed by GitHub
parent 7de02518a2
commit 4f7179b08e
6 changed files with 43 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
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)
}