Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
deprecation
/
feature-gate-deprecated_suggestion.rs
blob: a2d0023e3f47938b23195d9e93ab07a894bfb919 [
file
] [
log
] [
blame
]
// compile-flags: --crate-type=lib
#![
no_implicit_prelude
]
#[
deprecated
(
suggestion
=
"foo"
)]
//~ ERROR suggestions on deprecated items are unstable
struct
Foo
{}