mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 03:38:29 +00:00
9 lines
240 B
Rust
9 lines
240 B
Rust
![]() |
#![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() {}
|