rust/tests/ui/stability-attribute/auxiliary/ctor-stability.rs

9 lines
159 B
Rust
Raw Permalink Normal View History

#![crate_type = "lib"]
#![feature(staged_api)]
#![stable(feature = "none", since = "1.0")]
#[stable(feature = "none", since = "1.0")]
pub enum Foo {
A,
}