rust/tests/ui/deprecation/suggestion.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
803 B
Rust
Raw Normal View History

//@ run-rustfix
#![feature(staged_api)]
#![feature(deprecated_suggestion)]
#![stable(since = "1.0.0", feature = "test")]
#![deny(deprecated)]
#![allow(dead_code)]
struct Foo;
impl Foo {
2022-03-05 02:59:18 +00:00
#[deprecated(
since = "1.0.0",
2022-03-05 02:59:18 +00:00
note = "replaced by `replacement`",
suggestion = "replacement",
)]
#[stable(since = "1.0.0", feature = "test")]
fn deprecated(&self) {}
fn replacement(&self) {}
}
2021-06-15 08:21:58 +00:00
mod bar {
2022-03-05 02:59:18 +00:00
#[deprecated(
2021-06-15 08:21:58 +00:00
since = "1.0.0",
2022-03-05 02:59:18 +00:00
note = "replaced by `replacement`",
2021-06-15 08:21:58 +00:00
suggestion = "replacement",
)]
#[stable(since = "1.0.0", feature = "test")]
pub fn deprecated() {}
pub fn replacement() {}
}
fn main() {
let foo = Foo;
2021-05-24 03:41:39 +00:00
foo.deprecated(); //~ ERROR use of deprecated
2021-06-15 08:21:58 +00:00
bar::deprecated(); //~ ERROR use of deprecated
}