fail_int.mx raw

   1  package main
   2  
   3  func main() {
   4  	var x int = 42 // ERROR: int not allowed
   5  	_ = x
   6  }
   7