diff options
| author | Albert Larsan <74931857+albertlarsan68@users.noreply.github.com> | 2023-01-05 09:13:28 +0100 |
|---|---|---|
| committer | Albert Larsan <74931857+albertlarsan68@users.noreply.github.com> | 2023-01-11 09:32:08 +0000 |
| commit | cf2dff2b1e3fa55fa5415d524200070d0d7aacfe (patch) | |
| tree | 40a88d9a46aaf3e8870676eb2538378b75a263eb /src/test/ui/parser/float-field.rs | |
| parent | ca855e6e42787ecd062d81d53336fe6788ef51a9 (diff) | |
| download | rust-cf2dff2b1e3fa55fa5415d524200070d0d7aacfe.tar.gz rust-cf2dff2b1e3fa55fa5415d524200070d0d7aacfe.zip | |
Move /src/test to /tests
Diffstat (limited to 'src/test/ui/parser/float-field.rs')
| -rw-r--r-- | src/test/ui/parser/float-field.rs | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/src/test/ui/parser/float-field.rs b/src/test/ui/parser/float-field.rs deleted file mode 100644 index eaa7465dc4d..00000000000 --- a/src/test/ui/parser/float-field.rs +++ /dev/null @@ -1,62 +0,0 @@ -struct S(u8, (u8, u8)); - -fn main() { - let s = S(0, (0, 0)); - - s.1e1; //~ ERROR no field `1e1` on type `S` - s.1.; //~ ERROR unexpected token: `;` - s.1.1; - s.1.1e1; //~ ERROR no field `1e1` on type `(u8, u8)` - { s.1e+; } //~ ERROR unexpected token: `1e+` - //~| ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `1e+` - //~| ERROR expected at least one digit in exponent - { s.1e-; } //~ ERROR unexpected token: `1e-` - //~| ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `1e-` - //~| ERROR expected at least one digit in exponent - { s.1e+1; } //~ ERROR unexpected token: `1e+1` - //~| ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `1e+1` - { s.1e-1; } //~ ERROR unexpected token: `1e-1` - //~| ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `1e-1` - { s.1.1e+1; } //~ ERROR unexpected token: `1.1e+1` - //~| ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `1.1e+1` - { s.1.1e-1; } //~ ERROR unexpected token: `1.1e-1` - //~| ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `1.1e-1` - s.0x1e1; //~ ERROR no field `0x1e1` on type `S` - s.0x1.; //~ ERROR no field `0x1` on type `S` - //~| ERROR hexadecimal float literal is not supported - //~| ERROR unexpected token: `;` - s.0x1.1; //~ ERROR no field `0x1` on type `S` - //~| ERROR hexadecimal float literal is not supported - s.0x1.1e1; //~ ERROR no field `0x1` on type `S` - //~| ERROR hexadecimal float literal is not supported - { s.0x1e+; } //~ ERROR expected expression, found `;` - { s.0x1e-; } //~ ERROR expected expression, found `;` - s.0x1e+1; //~ ERROR no field `0x1e` on type `S` - s.0x1e-1; //~ ERROR no field `0x1e` on type `S` - { s.0x1.1e+1; } //~ ERROR unexpected token: `0x1.1e+1` - //~| ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `0x1.1e+1` - //~| ERROR hexadecimal float literal is not supported - { s.0x1.1e-1; } //~ ERROR unexpected token: `0x1.1e-1` - //~| ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `0x1.1e-1` - //~| ERROR hexadecimal float literal is not supported - s.1e1f32; //~ ERROR no field `1e1` on type `S` - //~| ERROR suffixes on a tuple index are invalid - s.1.f32; //~ ERROR no field `f32` on type `(u8, u8)` - s.1.1f32; //~ ERROR suffixes on a tuple index are invalid - s.1.1e1f32; //~ ERROR no field `1e1` on type `(u8, u8)` - //~| ERROR suffixes on a tuple index are invalid - { s.1e+f32; } //~ ERROR unexpected token: `1e+f32` - //~| ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `1e+f32` - //~| ERROR expected at least one digit in exponent - { s.1e-f32; } //~ ERROR unexpected token: `1e-f32` - //~| ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `1e-f32` - //~| ERROR expected at least one digit in exponent - { s.1e+1f32; } //~ ERROR unexpected token: `1e+1f32` - //~| ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `1e+1f32` - { s.1e-1f32; } //~ ERROR unexpected token: `1e-1f32` - //~| ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `1e-1f32` - { s.1.1e+1f32; } //~ ERROR unexpected token: `1.1e+1f32` - //~| ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `1.1e+1f32` - { s.1.1e-1f32; } //~ ERROR unexpected token: `1.1e-1f32` - //~| ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `1.1e-1f32` -} |
