]> git.lizzy.rs Git - rust.git/blob - tests/ui/resolve/resolve-conflict-type-vs-import.rs
Rollup merge of #106638 - RalfJung:realstd, r=thomcc
[rust.git] / tests / 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 }