diff options
Diffstat (limited to 'tests/ui/imports/issue-45829/rename-with-path.rs')
-rw-r--r-- | tests/ui/imports/issue-45829/rename-with-path.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/ui/imports/issue-45829/rename-with-path.rs b/tests/ui/imports/issue-45829/rename-with-path.rs new file mode 100644 index 000000000..e278a8789 --- /dev/null +++ b/tests/ui/imports/issue-45829/rename-with-path.rs @@ -0,0 +1,4 @@ +use std::{collections::HashMap as A, sync::Arc as A}; +//~^ ERROR is defined multiple times + +fn main() {} |