about summary refs log tree commit diff
path: root/tests/ui/typeck/issue-43189.rs
blob: ee0fe15eebacee934bafea1597be2ecbac8bc2d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Issue 46112: An extern crate pub re-exporting libcore was causing
// paths rooted from `std` to be misrendered in the diagnostic output.

//@ aux-build:xcrate-issue-43189-a.rs
//@ aux-build:xcrate-issue-43189-b.rs

extern crate xcrate_issue_43189_b;
fn main() {
    ().a();
    //~^ ERROR no method named `a` found
}