2022-06-28 08:04:10 +02:00

12 lines
116 B
Rust

#![deny(clippy::use_self)]
pub struct Foo;
impl Foo {
pub fn bar() -> Foo {
Foo
}
}
fn main() {}