Sign in
rust
/
rust
/
c021d2ddd49f8ff07d27fa772d88a3eb229e63ec
/
.
/
tests
/
run-make
/
split-debuginfo
/
bar.rs
blob: 07dd0715252cc346913b560ee70946ab9467e4aa [
file
]
pub
struct
Bar
{
x
:
u32
,
}
impl
Bar
{
pub
fn
print
(&
self
)
{
println
!(
"{}"
,
self
.
x
);
}
}
pub
fn
make_bar
(
x
:
u32
)
->
Bar
{
Bar
{
x
}
}