Sign in
rust
/
rust-lang
/
rust
/
refs/heads/auto
/
.
/
tests
/
ui
/
resolve
/
issue-26545.rs
blob: e42ce5e9a92b2e5f061cf6cfacb89cf85df85695 [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2015
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
()
{}