]> git.lizzy.rs Git - rust.git/blob - src/test/ui/resolve/resolve-conflict-type-vs-import.rs
Add 'src/tools/rustfmt/' from commit '7872306edf2e11a69aaffb9434088fd66b46a863'
[rust.git] / src / test / ui / resolve / resolve-conflict-type-vs-import.rs
1 use std::slice::Iter;
2
3 struct Iter;
4 //~^ ERROR the name `Iter` is defined multiple times
5
6 fn main() {
7 }