forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add the test case mentioned in rust-lang#74236
- Loading branch information
Showing
3 changed files
with
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// edition:2018 | ||
|
||
mod private { pub struct Pub; } | ||
|
||
// Reexport built-in attribute without a DefId (requires Rust 2018). | ||
pub use cfg_attr as attr; | ||
// This export needs to be after the built-in attribute to trigger the bug. | ||
pub use private::Pub as Renamed; |
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,9 @@ | ||
// edition:2018 | ||
// aux-build:dep.rs | ||
// compile-flags:--extern dep | ||
|
||
fn main() { | ||
// Trigger an error that will print the path of dep::private::Pub (as "dep::Renamed"). | ||
let () = dep::Renamed; | ||
//~^ ERROR mismatched types | ||
} |
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,11 @@ | ||
error[E0308]: mismatched types | ||
--> $DIR/main.rs:7:9 | ||
| | ||
LL | let () = dep::Renamed; | ||
| ^^ ------------ this expression has type `dep::Renamed` | ||
| | | ||
| expected struct `dep::Renamed`, found `()` | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0308`. |