Home | History | Annotate | Download | only in testdata

Lines Matching refs:u16

46 	var u16 uint16
47 _ = u16 << 15
48 _ = u16 << 16 // ERROR "u16 .16 bits. too small for shift of 16"
49 _ = u16 >> 16 // ERROR "u16 .16 bits. too small for shift of 16"
50 u16 <<= 16 // ERROR "u16 .16 bits. too small for shift of 16"
51 u16 >>= 16 // ERROR "u16 .16 bits. too small for shift of 16"