summaryrefslogtreecommitdiffstats
path: root/src/test/ui/hygiene/cross-crate-name-hiding.rs
blob: dd76ecc5762f534b0129692e367519b9ab4ed41f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Check that an item defined by a 2.0 macro in another crate cannot be used in
// another crate.

// aux-build:pub_hygiene.rs

extern crate pub_hygiene;

use pub_hygiene::*;

fn main() {
    let x = MyStruct {};
    //~^ ERROR cannot find struct, variant or union type `MyStruct` in this scope
}