rust/tests/ui/issues/issue-19601.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
84 B
Rust
Raw Normal View History

2019-06-12 15:18:32 +00:00
// check-pass
trait A<T> {}
struct B<T> where B<T>: A<B<T>> { t: T }
2019-06-12 15:18:32 +00:00
fn main() {}