summary refs log blame commit diff stats
path: root/tests/01-parse-impl.rs
blob: 8fe5b3c8fd36a291b56f5d91fa6a690de7c6e3fa (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                  
// Checks if #[impl_trait] exists.

use impl_trait::impl_trait;

struct Foo;

impl_trait! {
    impl Foo {
    }
}

fn main() {}