rust/src/test/ui/issues/issue-12863.rs

8 lines
165 B
Rust
Raw Normal View History

2014-10-25 22:07:41 +00:00
mod foo { pub fn bar() {} }
fn main() {
match () {
foo::bar => {} //~ ERROR expected unit struct/variant or constant, found function `foo::bar`
2014-10-25 22:07:41 +00:00
}
}