mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
7 lines
165 B
Rust
7 lines
165 B
Rust
//@ compile-flags: --crate-type=lib
|
|
|
|
#![no_implicit_prelude]
|
|
|
|
#[deprecated(suggestion = "foo")] //~ ERROR suggestions on deprecated items are unstable
|
|
struct Foo {}
|