aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/test_data/parser/inline/ok/0086_function_ret_type.txt
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-07-24 10:38:21 +0100
committerAleksey Kladov <[email protected]>2019-07-24 10:49:19 +0100
commit459241f272748ff2e57b2c7e84f5a04f78d67edb (patch)
tree2353f8f068962313d0b2748aab58b71c4ca456d2 /crates/ra_syntax/test_data/parser/inline/ok/0086_function_ret_type.txt
parent4d544fbf9b664b6a29d358d3cb41cdd7cd15e4d6 (diff)
move syntax tests to unit tests
Diffstat (limited to 'crates/ra_syntax/test_data/parser/inline/ok/0086_function_ret_type.txt')
-rw-r--r--crates/ra_syntax/test_data/parser/inline/ok/0086_function_ret_type.txt34
1 files changed, 34 insertions, 0 deletions
diff --git a/crates/ra_syntax/test_data/parser/inline/ok/0086_function_ret_type.txt b/crates/ra_syntax/test_data/parser/inline/ok/0086_function_ret_type.txt
new file mode 100644
index 000000000..ac793c95c
--- /dev/null
+++ b/crates/ra_syntax/test_data/parser/inline/ok/0086_function_ret_type.txt
@@ -0,0 +1,34 @@
1SOURCE_FILE@[0; 30)
2 FN_DEF@[0; 11)
3 FN_KW@[0; 2) "fn"
4 WHITESPACE@[2; 3) " "
5 NAME@[3; 6)
6 IDENT@[3; 6) "foo"
7 PARAM_LIST@[6; 8)
8 L_PAREN@[6; 7) "("
9 R_PAREN@[7; 8) ")"
10 WHITESPACE@[8; 9) " "
11 BLOCK@[9; 11)
12 L_CURLY@[9; 10) "{"
13 R_CURLY@[10; 11) "}"
14 WHITESPACE@[11; 12) "\n"
15 FN_DEF@[12; 29)
16 FN_KW@[12; 14) "fn"
17 WHITESPACE@[14; 15) " "
18 NAME@[15; 18)
19 IDENT@[15; 18) "bar"
20 PARAM_LIST@[18; 20)
21 L_PAREN@[18; 19) "("
22 R_PAREN@[19; 20) ")"
23 WHITESPACE@[20; 21) " "
24 RET_TYPE@[21; 26)
25 THIN_ARROW@[21; 23) "->"
26 WHITESPACE@[23; 24) " "
27 TUPLE_TYPE@[24; 26)
28 L_PAREN@[24; 25) "("
29 R_PAREN@[25; 26) ")"
30 WHITESPACE@[26; 27) " "
31 BLOCK@[27; 29)
32 L_CURLY@[27; 28) "{"
33 R_CURLY@[28; 29) "}"
34 WHITESPACE@[29; 30) "\n"