summaryrefslogtreecommitdiffstats
path: root/src/test/ui/underscore-ident-matcher.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/underscore-ident-matcher.rs')
-rw-r--r--src/test/ui/underscore-ident-matcher.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/test/ui/underscore-ident-matcher.rs b/src/test/ui/underscore-ident-matcher.rs
deleted file mode 100644
index bddc8c80a..000000000
--- a/src/test/ui/underscore-ident-matcher.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-macro_rules! identity {
- ($i: ident) => (
- $i
- )
-}
-
-fn main() {
- let identity!(_) = 10; //~ ERROR no rules expected the token `_`
-}