Lines Matching full:incompatible

63   sc = uc2; // expected-error {{incompatible type}}  in foo()
64 sc = bc2; // expected-error {{incompatible type}} in foo()
65 uc = sc2; // expected-error {{incompatible type}} in foo()
66 uc = bc2; // expected-error {{incompatible type}} in foo()
67 bc = sc2; // expected-error {{incompatible type}} in foo()
68 bc = uc2; // expected-error {{incompatible type}} in foo()
70 sc = sc_scalar; // expected-error {{incompatible type}} in foo()
71 sc = uc_scalar; // expected-error {{incompatible type}} in foo()
72 uc = sc_scalar; // expected-error {{incompatible type}} in foo()
73 uc = uc_scalar; // expected-error {{incompatible type}} in foo()
74 bc = sc_scalar; // expected-error {{incompatible type}} in foo()
75 bc = uc_scalar; // expected-error {{incompatible type}} in foo()
77 sc = ss2; // expected-error {{incompatible type}} in foo()
78 sc = si2; // expected-error {{incompatible type}} in foo()
79 sc = sl2; // expected-error {{incompatible type}} in foo()
80 sc = fd2; // expected-error {{incompatible type}} in foo()
82 ss = sc2; // expected-error {{incompatible type}} in foo()
83 si = sc2; // expected-error {{incompatible type}} in foo()
84 sl = sc2; // expected-error {{incompatible type}} in foo()
85 fd = sc2; // expected-error {{incompatible type}} in foo()
87 uc = us2; // expected-error {{incompatible type}} in foo()
88 uc = ui2; // expected-error {{incompatible type}} in foo()
89 uc = ul2; // expected-error {{incompatible type}} in foo()
90 uc = fd2; // expected-error {{incompatible type}} in foo()
92 us = uc2; // expected-error {{incompatible type}} in foo()
93 ui = uc2; // expected-error {{incompatible type}} in foo()
94 ul = uc2; // expected-error {{incompatible type}} in foo()
95 fd = uc2; // expected-error {{incompatible type}} in foo()
97 bc = us2; // expected-error {{incompatible type}} in foo()
98 bc = ui2; // expected-error {{incompatible type}} in foo()
99 bc = ul2; // expected-error {{incompatible type}} in foo()
100 bc = fd2; // expected-error {{incompatible type}} in foo()
102 bs = bc2; // expected-error {{incompatible type}} in foo()
103 bi = bc2; // expected-error {{incompatible type}} in foo()
104 bl = bc2; // expected-error {{incompatible type}} in foo()
105 fd = bc2; // expected-error {{incompatible type}} in foo()
324 bc = bc + uc2; // expected-error {{incompatible type}} in foo()
325 bc = uc + bc2; // expected-error {{incompatible type}} in foo()
326 bc = bc + sc2; // expected-error {{incompatible type}} in foo()
327 bc = sc + bc2; // expected-error {{incompatible type}} in foo()
544 bc = bc & uc2; // expected-error {{incompatible type}} in foo()
545 bc = uc & bc2; // expected-error {{incompatible type}} in foo()
546 bc = bc & sc2; // expected-error {{incompatible type}} in foo()
547 bc = sc & bc2; // expected-error {{incompatible type}} in foo()
602 bc = uc | bc2; // expected-error {{incompatible type}} in foo()
603 bc = bc | sc2; // expected-error {{incompatible type}} in foo()
636 bc = uc ^ bc2; // expected-error {{incompatible type}} in foo()
637 bc = bc ^ sc2; // expected-error {{incompatible type}} in foo()
663 sc = uc << sc2; // expected-error {{incompatible type}} in foo()
763 sc = uc >> sc2; // expected-error {{incompatible type}} in foo()