mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-16 21:29:04 +00:00
13 lines
271 B
Rust
13 lines
271 B
Rust
fn main() {
|
|
let tiles = Default::default();
|
|
for row in &mut tiles {
|
|
for tile in row {
|
|
*tile = 0;
|
|
//~^ ERROR type annotations needed
|
|
//~| NOTE cannot infer type
|
|
}
|
|
}
|
|
|
|
let tiles: [[usize; 3]; 3] = tiles;
|
|
}
|