rust/tests/ui/regions/issue-72051-member-region-hang.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
181 B
Rust
Raw Normal View History

2020-05-10 20:09:56 +00:00
// Regression test for #72051, hang when resolving regions.
// check-pass
// edition:2018
pub async fn query<'a>(_: &(), _: &(), _: (&(dyn std::any::Any + 'a),) ) {}
fn main() {}