diff options
Diffstat (limited to 'tests/ui/imports/issue-62767.rs')
-rw-r--r-- | tests/ui/imports/issue-62767.rs | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/ui/imports/issue-62767.rs b/tests/ui/imports/issue-62767.rs new file mode 100644 index 000000000..01184eea9 --- /dev/null +++ b/tests/ui/imports/issue-62767.rs @@ -0,0 +1,30 @@ +// check-pass + +// Minimized case from #62767. +mod m { + pub enum Same { + Same, + } +} + +use m::*; + +// The variant `Same` introduced by this import is also considered when resolving the prefix +// `Same::` during import validation to avoid effects similar to time travel (#74556). +use Same::Same; + +// Case from #74556. +mod foo { + pub mod bar { + pub mod bar { + pub fn foobar() {} + } + } +} + +use foo::*; +use bar::bar; + +use bar::foobar; + +fn main() {} |