]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-12863.rs
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / issues / issue-12863.rs
1 mod foo { pub fn bar() {} }
2
3 fn main() {
4 match () {
5 foo::bar => {}
6 //~^ ERROR expected unit struct, unit variant or constant, found function `foo::bar`
7 }
8 }