rust/src/test/ui/chalkify/trait_implied_bound.rs
2020-05-07 17:35:58 -04:00

18 lines
254 B
Rust

// run-pass
// compile-flags: -Z chalk
trait Foo { }
trait Bar<U> where U: Foo { }
impl Foo for i32 { }
impl Bar<i32> for i32 { }
fn only_foo<T: Foo>() { }
fn only_bar<U, T: Bar<U>>() {
only_foo::<U>()
}
fn main() {
only_bar::<i32, i32>()
}