reject_uint_type.mx raw

   1  // expected: type 'uint' is not allowed
   2  
   3  package main
   4  
   5  func f() {
   6  	var x uint
   7  }
   8