mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 21:27:18 +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() {}
|