2024-02-16 20:02:50 +00:00
|
|
|
//@ aux-build:namespaced_enums.rs
|
2014-11-25 18:00:46 +00:00
|
|
|
extern crate namespaced_enums;
|
|
|
|
|
|
|
|
fn main() {
|
2016-11-30 22:35:25 +00:00
|
|
|
let _ = namespaced_enums::A;
|
2017-11-20 12:13:27 +00:00
|
|
|
//~^ ERROR cannot find value `A`
|
2016-11-30 22:35:25 +00:00
|
|
|
let _ = namespaced_enums::B(10);
|
2019-10-15 00:20:50 +00:00
|
|
|
//~^ ERROR cannot find function, tuple struct or tuple variant `B`
|
2016-09-14 21:51:46 +00:00
|
|
|
let _ = namespaced_enums::C { a: 10 };
|
2017-11-20 12:13:27 +00:00
|
|
|
//~^ ERROR cannot find struct, variant or union type `C`
|
2014-11-25 18:00:46 +00:00
|
|
|
}
|