summaryrefslogtreecommitdiffstats
path: root/tests/ui/rfcs/rfc-2632-const-trait-impl/const_derives/derive-const-gate.rs
blob: dba3ad7f8701eab252601e0f5ca8e4e2097b537c (plain)
1
2
3
4
5
#[derive_const(Default)] //~ ERROR use of unstable library feature
//~^ ERROR not marked with `#[const_trait]`
pub struct S;

fn main() {}