summary refs log tree commit diff stats
path: root/tests/02-not-impl.rs
blob: 3a14bae7ebd5cd7d70772d736725a41c80196e7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// Checks that #[impl_trait] checks for impls.

use impl_trait::impl_trait;

impl_trait! {
    struct Foo {
    }
}

fn main() {}