15 lines
235 B
Rust
15 lines
235 B
Rust
trait x {
|
|
fn use_x<T>(&self);
|
|
}
|
|
struct y(());
|
|
impl x for y {
|
|
fn use_x<T>(&self) {
|
|
struct foo { //~ ERROR quux
|
|
i: ()
|
|
}
|
|
fn new_foo<T>(i: ()) -> foo {
|
|
foo { i: i }
|
|
}
|
|
}
|
|
}
|