2019-09-01 17:30:19 -04:00
|
|
|
// check-pass
|
2019-02-05 22:50:44 +01:00
|
|
|
|
2018-12-09 18:17:50 +02:00
|
|
|
#![deny(deprecated_in_future)]
|
|
|
|
|
|
|
|
#[deprecated(since = "99.99.99", note = "text")]
|
|
|
|
pub fn deprecated_future() {}
|
|
|
|
|
|
|
|
fn test() {
|
2022-04-07 21:20:32 -04:00
|
|
|
deprecated_future(); // ok; deprecated_in_future only applies with `#![feature(staged_api)]`
|
2020-07-25 13:49:46 -04:00
|
|
|
//~^ WARNING use of deprecated function `deprecated_future`: text [deprecated]
|
2018-12-09 18:17:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|