summaryrefslogtreecommitdiffstats
path: root/src/test/ui/deprecation/deprecation-lint-3.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/deprecation/deprecation-lint-3.rs')
-rw-r--r--src/test/ui/deprecation/deprecation-lint-3.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/ui/deprecation/deprecation-lint-3.rs b/src/test/ui/deprecation/deprecation-lint-3.rs
new file mode 100644
index 000000000..e6e1587da
--- /dev/null
+++ b/src/test/ui/deprecation/deprecation-lint-3.rs
@@ -0,0 +1,14 @@
+// aux-build:deprecation-lint.rs
+// error-pattern: use of deprecated function
+
+#![deny(deprecated)]
+#![allow(warnings)]
+
+#[macro_use]
+extern crate deprecation_lint;
+
+use deprecation_lint::*;
+
+fn main() {
+ macro_test_arg_nested!(deprecated_text);
+}