summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/no-hex-float-literal.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/no-hex-float-literal.rs')
-rw-r--r--src/test/ui/parser/no-hex-float-literal.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/test/ui/parser/no-hex-float-literal.rs b/src/test/ui/parser/no-hex-float-literal.rs
deleted file mode 100644
index bf11dee08..000000000
--- a/src/test/ui/parser/no-hex-float-literal.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-fn main() {
- 0xABC.Df;
- //~^ ERROR `{integer}` is a primitive type and therefore doesn't have fields
- 0x567.89;
- //~^ ERROR hexadecimal float literal is not supported
- 0xDEAD.BEEFp-2f;
- //~^ ERROR invalid suffix `f` for float literal
- //~| ERROR `{integer}` is a primitive type and therefore doesn't have fields
-}