summaryrefslogtreecommitdiffstats
path: root/src/test/ui/stability-attribute/auxiliary/ctor-stability.rs
blob: 74c6023d7fbbd97d0de51e297fe58d641890cd90 (plain)
1
2
3
4
5
6
7
8
#![crate_type = "lib"]
#![feature(staged_api)]
#![stable(feature = "none", since = "1.0")]

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