summaryrefslogtreecommitdiffstats
path: root/tests/ui/imports/ambiguous-7.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/ui/imports/ambiguous-7.rs18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/ui/imports/ambiguous-7.rs b/tests/ui/imports/ambiguous-7.rs
new file mode 100644
index 000000000..5148ff4cc
--- /dev/null
+++ b/tests/ui/imports/ambiguous-7.rs
@@ -0,0 +1,18 @@
+// https://github.com/rust-lang/rust/pull/113099#issuecomment-1638206152
+
+mod t2 {
+ #[derive(Debug)]
+ pub enum Error {}
+}
+
+pub use t2::*;
+
+mod t3 {
+ pub trait Error {}
+}
+
+use self::t3::*;
+fn a<E: Error>(_: E) {}
+//~^ ERROR `Error` is ambiguous
+
+fn main() {}