summaryrefslogtreecommitdiffstats
path: root/src/test/ui/proc-macro/debug/dump-debug-span-debug.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/proc-macro/debug/dump-debug-span-debug.rs')
-rw-r--r--src/test/ui/proc-macro/debug/dump-debug-span-debug.rs46
1 files changed, 0 insertions, 46 deletions
diff --git a/src/test/ui/proc-macro/debug/dump-debug-span-debug.rs b/src/test/ui/proc-macro/debug/dump-debug-span-debug.rs
deleted file mode 100644
index 102bd6b7b..000000000
--- a/src/test/ui/proc-macro/debug/dump-debug-span-debug.rs
+++ /dev/null
@@ -1,46 +0,0 @@
-// run-pass
-// aux-build:macro-dump-debug.rs
-// compile-flags: -Z span-debug
-
-
-extern crate macro_dump_debug;
-use macro_dump_debug::dump_debug;
-
-dump_debug! {
- ident // ident
- r#ident // raw ident
- , // alone punct
- && // joint punct, two-char op
- ||> // joint punct, two-char op + one-char op
- ||<< // joint punct, two-char op + two-char op
- ..= // joint punct, three-char op
- <<=! // joint punct, three-char op + one-char-op
- () // empty group
- [_] // nonempty group
-
- // unsuffixed literals
- 0
- 1.0
- "S"
- b"B"
- r"R"
- r##"R"##
- br"BR"
- br##"BR"##
- 'C'
- b'B'
-
- // suffixed literals
- 0q
- 1.0q
- "S"q
- b"B"q
- r"R"q
- r##"R"##q
- br"BR"q
- br##"BR"##q
- 'C'q
- b'B'q
-}
-
-fn main() {}