diff options
Diffstat (limited to 'tests/ui/macros/macro-deprecation.stderr')
-rw-r--r-- | tests/ui/macros/macro-deprecation.stderr | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/ui/macros/macro-deprecation.stderr b/tests/ui/macros/macro-deprecation.stderr new file mode 100644 index 000000000..07849d7ce --- /dev/null +++ b/tests/ui/macros/macro-deprecation.stderr @@ -0,0 +1,16 @@ +warning: use of deprecated macro `local_deprecated`: local deprecation note + --> $DIR/macro-deprecation.rs:11:5 + | +LL | local_deprecated!(); + | ^^^^^^^^^^^^^^^^ + | + = note: `#[warn(deprecated)]` on by default + +warning: use of deprecated macro `deprecated_macro`: deprecation note + --> $DIR/macro-deprecation.rs:12:5 + | +LL | deprecated_macro!(); + | ^^^^^^^^^^^^^^^^ + +warning: 2 warnings emitted + |