mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 09:22:35 +00:00
14 lines
335 B
Rust
14 lines
335 B
Rust
// check-pass
|
|
|
|
#![deny(deprecated_in_future)]
|
|
|
|
#[deprecated(since = "99.99.99", note = "text")]
|
|
pub fn deprecated_future() {}
|
|
|
|
fn test() {
|
|
deprecated_future(); // ok; deprecated_in_future only applies with `#![feature(staged_api)]`
|
|
//~^ WARNING use of deprecated function `deprecated_future`: text [deprecated]
|
|
}
|
|
|
|
fn main() {}
|