os-rust/tests/ui/issues/issue-33293.rs

7 lines
139 B
Rust
Raw Normal View History

2016-06-13 22:59:36 +02:00
fn main() {
match 0 {
aaa::bbb(_) => ()
2020-08-27 13:27:14 +01:00
//~^ ERROR failed to resolve: use of undeclared crate or module `aaa`
2016-06-13 22:59:36 +02:00
};
}