summary refs log tree commit diff stats
path: root/tests/07-docs.rs
blob: a26bf50d75432ba84d34fa045c1840180d70b9a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Checks that `impl trait` works, with docs.

use impl_trait::impl_trait;

struct Foo;
trait Bar {
}

impl_trait! {
    impl Foo {
        /// More test docs
        impl trait Bar {
        }
    }
}

fn static_assert<T: Bar>(_t: T) {}

fn main() {
    static_assert(Foo);
}