Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// Test that spans get only base in eager type resolution (structurally_resolve_type).
fn main() {
let mut x = Default::default();
//~^ ERROR type annotations needed
x.0;
x = 1;
}
fn foo() {
x[0];