Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-12863.rs
blob: 1ac1c3d818e58c3f106c9a081da4c8f3abe48a78 [
file
] [
log
] [
blame
] [
edit
]
mod
foo
{
pub
fn
bar
()
{}
}
fn
main
()
{
match
()
{
foo
::
bar
=>
{}
//~^ ERROR expected unit struct, unit variant or constant, found function `foo::bar`
}
}