rust/tests/ui/error-codes/E0433.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

4 lines
68 B
Rust
Raw Normal View History

2016-08-18 05:45:10 +08:00
fn main () {
let map = NonExistingMap::new(); //~ ERROR E0433
2016-08-18 05:45:10 +08:00
}