aboutsummaryrefslogtreecommitdiff
path: root/crates/syntax/test_data/parser/inline/ok/0032_fn_pointer_type.rs
blob: 9493da83d56c3f49c2160c448974e88603394fd8 (plain)
1
2
3
4
type A = fn();
type B = unsafe fn();
type C = unsafe extern "C" fn();
type D = extern "C" fn ( u8 , ... ) -> u8;