blob: 0897b74b3567f3239a301238021c8e7f0e78502d [file] [log] [blame] [edit]
#![crate_type = "lib"]
pub struct Foo(());
impl Foo {
pub fn new() -> Foo {
Foo(())
}
}