1
Fork 0
rust/src/test/ui/chalkify/lower_trait.rs

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

12 lines
130 B
Rust
Raw Normal View History

2020-03-03 11:25:03 -05:00
// check-pass
// compile-flags: -Z chalk
trait Bar { }
trait Foo<S, T: ?Sized> {
type Assoc: Bar + ?Sized;
}
fn main() {
}