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-17 21:45:10 +00:00
fn main () {
let map = NonExistingMap::new(); //~ ERROR E0433
2016-08-17 21:45:10 +00:00
}