summary refs log tree commit diff stats
path: root/tests/05-where.rs
blob: c37db6cb4838f5c5d7d9753c94e9b8b98570a0ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Checks that #[impl_trait] works with generics.

use impl_trait::impl_trait;

struct Foo<T>(T);
trait Bar {
}

impl_trait! {
    impl<T> Foo<T> where T: Default {
    }
}

fn main() {}