about summary refs log tree commit diff
path: root/tests/ui/regions/issue-72051-member-region-hang.rs
blob: c27d3ccbb9d12a143f33628959476cb45c4d2fee (plain)
1
2
3
4
5
6
7
// Regression test for #72051, hang when resolving regions.

//@ check-pass
//@ edition:2018

pub async fn query<'a>(_: &(), _: &(), _: (&(dyn std::any::Any + 'a),) ) {}
fn main() {}