diff options
Diffstat (limited to 'tests/ui/malformed/malformed-plugin-1.rs')
-rw-r--r-- | tests/ui/malformed/malformed-plugin-1.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/ui/malformed/malformed-plugin-1.rs b/tests/ui/malformed/malformed-plugin-1.rs new file mode 100644 index 000000000..d4c1a2a16 --- /dev/null +++ b/tests/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() {} |