summaryrefslogtreecommitdiffstats
path: root/tests/ui/chalkify/lower_trait_where_clause.rs
blob: a21d2f31963c79ec88a83de6b173a47463ee2522 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// check-pass
// compile-flags: -Z trait-solver=chalk

use std::borrow::Borrow;

trait Foo<'a, 'b, T, U>
where
    T: Borrow<U> + ?Sized,
    U: ?Sized + 'b,
    'a: 'b,
    Box<T>:, // NOTE(#53696) this checks an empty list of bounds.
{
}

fn main() {
}