]> git.lizzy.rs Git - rust.git/blob - crates/syntax/test_data/parser/inline/ok/0081_for_type.rs
Merge #7321
[rust.git] / crates / syntax / test_data / parser / inline / ok / 0081_for_type.rs
1 type A = for<'a> fn() -> ();
2 type B = for<'a> unsafe extern "C" fn(&'a ()) -> ();
3 type Obj = for<'a> PartialEq<&'a i32>;