summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/macro/macro-repeat.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/macro/macro-repeat.rs')
-rw-r--r--src/test/ui/parser/macro/macro-repeat.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/test/ui/parser/macro/macro-repeat.rs b/src/test/ui/parser/macro/macro-repeat.rs
deleted file mode 100644
index 3ffbea217..000000000
--- a/src/test/ui/parser/macro/macro-repeat.rs
+++ /dev/null
@@ -1,12 +0,0 @@
-macro_rules! mac {
- ( $($v:tt)* ) => {
- $v
- //~^ ERROR still repeating at this depth
- //~| ERROR still repeating at this depth
- };
-}
-
-fn main() {
- mac!(0);
- mac!(1);
-}