10 lines
97 B
Rust
10 lines
97 B
Rust
use inherent::inherent;
|
|
|
|
struct Struct;
|
|
|
|
#[inherent]
|
|
impl Struct {
|
|
fn f() {}
|
|
}
|
|
|
|
fn main() {}
|