Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
traits
/
anon-static-method.rs
blob: 6a348874b4cf5196c184a64ec656a63c051d7ecf [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
struct
Foo
{
x
:
isize
}
impl
Foo
{
pub
fn
new
()
->
Foo
{
Foo
{
x
:
3
}
}
}
pub
fn
main
()
{
let
x
=
Foo
::
new
();
println
!(
"{}"
,
x
.
x
);
}