Lines Matching full:incompatible
56 _ = i == n // ERROR "invalid operation.*mismatched types|incompatible types"
57 _ = i != n // ERROR "invalid operation.*mismatched types|incompatible types"
58 _ = i >= n // ERROR "invalid operation.*mismatched types|incompatible types"
59 _ = n == i // ERROR "invalid operation.*mismatched types|incompatible types"
60 _ = n != i // ERROR "invalid operation.*mismatched types|incompatible types"
61 _ = n >= i // ERROR "invalid operation.*mismatched types|incompatible types"
70 _ = i == 1 // ERROR "invalid operation.*mismatched types|incompatible types|cannot convert"
71 _ = i != 1 // ERROR "invalid operation.*mismatched types|incompatible types|cannot convert"
72 _ = i >= 1 // ERROR "invalid operation.*mismatched types|incompatible types|cannot convert"
73 _ = 1 == i // ERROR "invalid operation.*mismatched types|incompatible types|cannot convert"
74 _ = 1 != i // ERROR "invalid operation.*mismatched types|incompatible types|cannot convert"
75 _ = 1 >= i // ERROR "invalid operation.*mismatched types|incompatible types|cannot convert"
84 _ = i == f // ERROR "invalid operation.*mismatched types|incompatible types"
85 _ = i != f // ERROR "invalid operation.*mismatched types|incompatible types"
86 _ = i >= f // ERROR "invalid operation.*mismatched types|incompatible types"
87 _ = f == i // ERROR "invalid operation.*mismatched types|incompatible types"
88 _ = f != i // ERROR "invalid operation.*mismatched types|incompatible types"
89 _ = f >= i // ERROR "invalid operation.*mismatched types|incompatible types"
121 _ = e ^ c // ERROR "invalid operation.*mismatched types|incompatible types"
122 _ = c ^ e // ERROR "invalid operation.*mismatched types|incompatible types"
123 _ = 1 ^ e // ERROR "invalid operation.*mismatched types|incompatible types"
124 _ = e ^ 1 // ERROR "invalid operation.*mismatched types|incompatible types"