Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#![crate_type = "lib"]
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 }