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