blob: 61e8e2ace607e8311ce6fde0593638a329e46c83 [file] [log] [blame]
trait Trait {
fn dummy(&self) { }
}
struct Foo<T:Trait> {
x: T,
}
static X: Foo<usize> = Foo { //~ ERROR E0277
x: 1, //~ ERROR: E0277
};
fn main() {
}