rust/src/test/ui/deprecation/suggestion.stderr

15 lines
417 B
Plaintext
Raw Normal View History

error: use of deprecated associated function `Foo::deprecated`: replaced by `replacement`
--> $DIR/suggestion.rs:27:9
|
LL | foo.deprecated();
| ^^^^^^^^^^ help: replace the use of the deprecated associated function: `replacement`
|
2020-01-22 17:57:38 -06:00
note: the lint level is defined here
--> $DIR/suggestion.rs:7:9
|
LL | #![deny(deprecated)]
| ^^^^^^^^^^
error: aborting due to previous error