aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/tests/data/parser/inline/ok/0032_fn_pointer_type.rs
diff options
context:
space:
mode:
authorEdwin Cheng <[email protected]>2019-04-23 04:10:41 +0100
committerEdwin Cheng <[email protected]>2019-04-23 04:10:41 +0100
commit6c913d8fa700c8ab58cf386dc958707a248f1379 (patch)
treee1cc915077e76d097ddd9bc6739ba7af8c05dd9f /crates/ra_syntax/tests/data/parser/inline/ok/0032_fn_pointer_type.rs
parent1705e5887d5c71cad846cb7e840b3c4e03942856 (diff)
Add `...` parsing for fn pointer type
Diffstat (limited to 'crates/ra_syntax/tests/data/parser/inline/ok/0032_fn_pointer_type.rs')
-rw-r--r--crates/ra_syntax/tests/data/parser/inline/ok/0032_fn_pointer_type.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ra_syntax/tests/data/parser/inline/ok/0032_fn_pointer_type.rs b/crates/ra_syntax/tests/data/parser/inline/ok/0032_fn_pointer_type.rs
index c9bf3bdb4..9493da83d 100644
--- a/crates/ra_syntax/tests/data/parser/inline/ok/0032_fn_pointer_type.rs
+++ b/crates/ra_syntax/tests/data/parser/inline/ok/0032_fn_pointer_type.rs
@@ -1,3 +1,4 @@
1type A = fn(); 1type A = fn();
2type B = unsafe fn(); 2type B = unsafe fn();
3type C = unsafe extern "C" fn(); 3type C = unsafe extern "C" fn();
4type D = extern "C" fn ( u8 , ... ) -> u8;