Home | History | Annotate | Download | only in fixedbugs

Lines Matching refs:mismatched

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