Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
tests
/
ui
/
resolve
/
issue-26545.rs
blob: 5652ee747060597bec4dea336d00d71103d82f88 [
file
] [
log
] [
blame
]
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
()
{}