Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
stability-attribute
/
auxiliary
/
stability-attribute-implies.rs
blob: 468be1bc144508b1e094ce66eb3d6872de7dba21 [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
staged_api
)]
#![
stable
(
feature
=
"stability_attribute_implies"
,
since
=
"1.0.0"
)]
#[
stable
(
feature
=
"foo"
,
since
=
"1.62.0"
)]
pub
fn
foo
()
{}
#[
unstable
(
feature
=
"foobar"
,
issue
=
"1"
,
implied_by
=
"foo"
)]
pub
fn
foobar
()
{}