summaryrefslogtreecommitdiffstats
path: root/src/test/ui/malformed/malformed-plugin-1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/malformed/malformed-plugin-1.rs')
-rw-r--r--src/test/ui/malformed/malformed-plugin-1.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/test/ui/malformed/malformed-plugin-1.rs b/src/test/ui/malformed/malformed-plugin-1.rs
new file mode 100644
index 000000000..d4c1a2a16
--- /dev/null
+++ b/src/test/ui/malformed/malformed-plugin-1.rs
@@ -0,0 +1,5 @@
+#![feature(plugin)]
+#![plugin] //~ ERROR malformed `plugin` attribute
+//~| WARN use of deprecated attribute `plugin`: compiler plugins are deprecated
+
+fn main() {}