Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
d91e86e963128ebd9e0baee42d1504670dab1565
/
.
/
tests
/
ui
/
static
/
static-method-privacy.rs
blob: 9ee59b320edcdd5727d87b3b7031246086e0145d [
file
] [
log
] [
blame
]
mod
a
{
pub
struct
S
;
impl
S
{
fn
new
()
->
S
{
S
}
}
}
fn
main
()
{
let
_
=
a
::
S
::
new
();
//~ ERROR associated function `new` is private
}