rust/src/test/auxiliary/xc_private_method_lib.rs

10 lines
103 B
Rust
Raw Normal View History

#[crate_type="lib"];
pub struct Foo {
x: int
}
impl Foo {
fn new() -> Foo { Foo { x: 1 } }
}