blob: 07dd0715252cc346913b560ee70946ab9467e4aa [file] [log] [blame] [edit]
pub struct Bar {
x: u32,
}
impl Bar {
pub fn print(&self) {
println!("{}", self.x);
}
}
pub fn make_bar(x: u32) -> Bar {
Bar { x }
}