Lines Matching full:sequence
9 int b0 = 0'xff; // expected-error {{digit separator cannot appear at end of digit sequence}} expect…
17 float a1 = 1'e1; // expected-error {{digit separator cannot appear at end of digit sequence}}
19 float c1 = 1.'0e1; // expected-error {{digit separator cannot appear at start of digit sequence}}
20 float d1 = 1.0'e1; // expected-error {{digit separator cannot appear at end of digit sequence}}
21 float e1 = 1e'1; // expected-error {{digit separator cannot appear at start of digit sequence}}
22 float g1 = 0.'0; // expected-error {{digit separator cannot appear at start of digit sequence}}
24 float i1 = 0x.'0p0; // expected-error {{digit separator cannot appear at start of digit sequence}}
27 float l1 = 0x0.'0p0; // expected-error {{digit separator cannot appear at start of digit sequence}}
28 float m1 = 0x0.0'p0; // expected-error {{digit separator cannot appear at end of digit sequence}}
29 float n1 = 0x0.0p'0; // expected-error {{digit separator cannot appear at start of digit sequence}}
30 float p1 = 0'e1; // expected-error {{digit separator cannot appear at end of digit sequence}}
32 float r1 = 0.'0e1; // expected-error {{digit separator cannot appear at start of digit sequence}}
33 float s1 = 0.0'e1; // expected-error {{digit separator cannot appear at end of digit sequence}}
34 float t1 = 0.0e'1; // expected-error {{digit separator cannot appear at start of digit sequence}}
38 float x1 = 0'e+1; // expected-error {{digit separator cannot appear at end of digit sequence}}
39 float y1 = 0x0'p+1; // expected-error {{digit separator cannot appear at end of digit sequence}}