blob: 19cff8db7cb4ad59c792a43f2ed000a8986d5bda [file] [log] [blame]
// check-pass
// compile-flags: -Z 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() {
}