blob: d126a455daeb204e77f11ff63139de60378bdd99 [file] [log] [blame]
// Regression test for #61315
//
// `dyn T:` is lowered to `dyn T: ReEmpty` - check that we don't ICE in NLL for
// the unexpected region.
// check-pass
trait T {}
fn f() where dyn T: {}
fn main() { f(); }