]> git.lizzy.rs Git - rust.git/blob - src/test/ui/annotate-snippet/missing-type.rs
Merge 'rust-clippy/master' into clippyup
[rust.git] / src / test / ui / annotate-snippet / missing-type.rs
1 // compile-flags: --error-format human-annotate-rs -Z unstable-options
2
3 pub fn main() {
4     let x: Iter; //~ ERROR cannot find type `Iter` in this scope
5 }