summaryrefslogtreecommitdiffstats
path: root/third_party/rust/inherent/tests/ui/not-trait-impl.rs
blob: a9a6a11628275a5f82fd6f2f057295ddfe1579b3 (plain)
1
2
3
4
5
6
7
8
9
10
use inherent::inherent;

struct Struct;

#[inherent]
impl Struct {
    fn f() {}
}

fn main() {}