mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
16 lines
307 B
Rust
16 lines
307 B
Rust
// 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() {
|
|
let mut x = Default::default();
|
|
//~^ ERROR type annotations needed
|
|
x[0];
|
|
x = 1;
|
|
}
|