rust/tests/ui/hygiene/cross-crate-name-hiding.rs

14 lines
298 B
Rust

// 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
}