repos
/
moxie
/
tests
/
restrict
/ fail_uintptr.go
fail_uintptr.go
raw
1
package main
2
3
func main() {
4
var p uintptr = 0 // ERROR: uintptr not allowed
5
_ = p
6
}
7