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