summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/bound/on-structs-and-enums-static.rs
blob: 066416cb362a3ee74c6b0cba69d9a79714cd1b23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
trait Trait {
    fn dummy(&self) { }
}

struct Foo<T:Trait> {
    x: T,
}

static X: Foo<usize> = Foo {
//~^ ERROR E0277
    x: 1, //~ ERROR: E0277
};

fn main() {
}