Sign in
rust
/
rust
/
c021d2ddd49f8ff07d27fa772d88a3eb229e63ec
/
.
/
tests
/
run-make
/
split-debuginfo
/
foo.rs
blob: b058e540862343f7a2b2b791e78fdfc830dc65e3 [
file
]
pub
struct
Foo
{
x
:
u32
,
}
impl
Foo
{
pub
fn
print
(&
self
)
{
println
!(
"{}"
,
self
.
x
);
}
}
pub
fn
make_foo
(
x
:
u32
)
->
Foo
{
Foo
{
x
}
}
fn
main
()
{}