aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/issue-3552.rs
blob: 9a4451b14b8943f56093294721c35b1b192c8dfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
trait Foo {
    const BAR: u32;
}

const TRAIT_REF_BAR: u32 = <Foo>::BAR;
// { dg-error "no default expression on trait constant" "" { target *-*-* } .-1 }

struct GlobalTraitRef;

impl Foo for GlobalTraitRef {
    const BAR: u32 = TRAIT_REF_BAR;
}

fn main() {}