forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#90127 - JohnTitor:fix-90113, r=estebank
Do not mention a reexported item if it's private Fixes rust-lang#90113 The _actual_ regression was introduced in rust-lang#73652, then rust-lang#88838 made it worse. This fixes the issue by not counting such an import as a candidate.
- Loading branch information
Showing
3 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
mod list { | ||
pub use self::List::Cons; | ||
|
||
pub enum List<T> { | ||
Cons(T, Box<List<T>>), | ||
} | ||
} | ||
|
||
mod alias { | ||
use crate::list::List; | ||
|
||
pub type Foo = List<String>; | ||
} | ||
|
||
fn foo(l: crate::alias::Foo) { | ||
match l { | ||
Cons(..) => {} //~ ERROR: cannot find tuple struct or tuple variant `Cons` in this scope | ||
} | ||
} | ||
|
||
fn main() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
error[E0531]: cannot find tuple struct or tuple variant `Cons` in this scope | ||
--> $DIR/issue-90113.rs:17:9 | ||
| | ||
LL | Cons(..) => {} | ||
| ^^^^ not found in this scope | ||
| | ||
help: consider importing this tuple variant | ||
| | ||
LL | use list::List::Cons; | ||
| | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0531`. |