summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/attribute-with-no-generics-in-parameter-list.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/test/ui/parser/attribute-with-no-generics-in-parameter-list.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/test/ui/parser/attribute-with-no-generics-in-parameter-list.rs b/src/test/ui/parser/attribute-with-no-generics-in-parameter-list.rs
new file mode 100644
index 000000000..c2cc91d8f
--- /dev/null
+++ b/src/test/ui/parser/attribute-with-no-generics-in-parameter-list.rs
@@ -0,0 +1,3 @@
+fn foo<#[attr]>() {} //~ ERROR attribute without generic parameters
+
+fn main() {}