Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
static
/
static-method-privacy.rs
blob: 9ee59b320edcdd5727d87b3b7031246086e0145d [
file
] [
log
] [
blame
] [
edit
]
mod
a
{
pub
struct
S
;
impl
S
{
fn
new
()
->
S
{
S
}
}
}
fn
main
()
{
let
_
=
a
::
S
::
new
();
//~ ERROR associated function `new` is private
}