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