12 lines
116 B
Rust
12 lines
116 B
Rust
|
#![deny(clippy::use_self)]
|
||
|
|
||
|
pub struct Foo;
|
||
|
|
||
|
impl Foo {
|
||
|
pub fn bar() -> Foo {
|
||
|
Foo
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {}
|