Sign in
rust
/
rust
/
08cd08fbef8c6663b052d8d9e4930d5696cbb8a7
/
.
/
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
()
{}