rust/tests/ui/issues/issue-74236/main.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
231 B
Rust
Raw Normal View History

2020-07-11 06:42:08 -05:00
// 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
}