summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/rustc-impl-const-stability.rs
blob: 0c18efa0a0235310a1e8d1a1ff9a4c3474d4442d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// check-pass

#![crate_type = "lib"]
#![feature(staged_api)]
#![feature(const_trait_impl)]
#![stable(feature = "foo", since = "1.0.0")]

#[stable(feature = "potato", since = "1.27.0")]
pub struct Data {
    _data: u128,
}

#[stable(feature = "potato", since = "1.27.0")]
#[rustc_const_unstable(feature = "data_foo", issue = "none")]
impl const Default for Data {
    fn default() -> Data {
        Data { _data: 42 }
    }
}