repos
/
moxie
/
legacy
/
tests
/
restrict
/ fail_uint.mx
fail_uint.mx
raw
1
package main
2
3
func main() {
4
var x uint = 42 // ERROR: uint not allowed
5
_ = x
6
}
7