Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
resolve
/
issue-26545.rs
blob: 5652ee747060597bec4dea336d00d71103d82f88 [
file
] [
log
] [
blame
] [
edit
]
mod
foo
{
pub
struct
B
(
pub
());
}
mod
baz
{
fn
foo
()
{
B
(());
//~^ ERROR cannot find function, tuple struct or tuple variant `B` in this scope [E0425]
}
}
fn
main
()
{}