about summary refs log tree commit diff
path: root/src/test/ui/parser/ascii-only-character-escape.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/ascii-only-character-escape.rs')
-rw-r--r--src/test/ui/parser/ascii-only-character-escape.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/test/ui/parser/ascii-only-character-escape.rs b/src/test/ui/parser/ascii-only-character-escape.rs
deleted file mode 100644
index 725c8ad2351..00000000000
--- a/src/test/ui/parser/ascii-only-character-escape.rs
+++ /dev/null
@@ -1,6 +0,0 @@
-fn main() {
-    let x = "\x80"; //~ ERROR out of range hex escape
-    let y = "\xff"; //~ ERROR out of range hex escape
-    let z = "\xe2"; //~ ERROR out of range hex escape
-    let a = b"\x00e2";  // ok because byte literal
-}