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