Sign in
rust
/
rust
/
08650fbb506c44fbc95d91abfb7cd95a56bbff30
/
.
/
src
/
test
/
ui
/
issues
/
issue-12863.rs
blob: 1ac1c3d818e58c3f106c9a081da4c8f3abe48a78 [
file
]
mod
foo
{
pub
fn
bar
()
{}
}
fn
main
()
{
match
()
{
foo
::
bar
=>
{}
//~^ ERROR expected unit struct, unit variant or constant, found function `foo::bar`
}
}