]> git.lizzy.rs Git - rust.git/blob - tests/ui/imports/issue-32354-suggest-import-rename.fixed
Rollup merge of #105526 - Xiretza:iter-from-generator-derive, r=scottmcm
[rust.git] / tests / ui / imports / issue-32354-suggest-import-rename.fixed
1 // run-rustfix
2
3 #![allow(unused_imports)]
4
5 pub mod extension1 {
6     pub trait ConstructorExtension {}
7 }
8
9 pub mod extension2 {
10     pub trait ConstructorExtension {}
11 }
12
13 use extension1::ConstructorExtension;
14 use extension2::ConstructorExtension as OtherConstructorExtension; //~ ERROR is defined multiple times
15
16 fn main() {}