rust/tests/ui/traits/auxiliary/anon_trait_static_method_lib.rs
2023-01-11 09:32:08 +00:00

10 lines
103 B
Rust

pub struct Foo {
pub x: isize
}
impl Foo {
pub fn new() -> Foo {
Foo { x: 3 }
}
}