aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/test_data/parser/err/0021_incomplete_param.txt
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_syntax/test_data/parser/err/0021_incomplete_param.txt')
-rw-r--r--crates/ra_syntax/test_data/parser/err/0021_incomplete_param.txt34
1 files changed, 34 insertions, 0 deletions
diff --git a/crates/ra_syntax/test_data/parser/err/0021_incomplete_param.txt b/crates/ra_syntax/test_data/parser/err/0021_incomplete_param.txt
new file mode 100644
index 000000000..c125a0bc9
--- /dev/null
+++ b/crates/ra_syntax/test_data/parser/err/0021_incomplete_param.txt
@@ -0,0 +1,34 @@
1SOURCE_FILE@[0; 22)
2 FN_DEF@[0; 21)
3 FN_KW@[0; 2) "fn"
4 WHITESPACE@[2; 3) " "
5 NAME@[3; 6)
6 IDENT@[3; 6) "foo"
7 PARAM_LIST@[6; 17)
8 L_PAREN@[6; 7) "("
9 PARAM@[7; 13)
10 BIND_PAT@[7; 8)
11 NAME@[7; 8)
12 IDENT@[7; 8) "x"
13 COLON@[8; 9) ":"
14 WHITESPACE@[9; 10) " "
15 PATH_TYPE@[10; 13)
16 PATH@[10; 13)
17 PATH_SEGMENT@[10; 13)
18 NAME_REF@[10; 13)
19 IDENT@[10; 13) "i32"
20 COMMA@[13; 14) ","
21 WHITESPACE@[14; 15) " "
22 PARAM@[15; 16)
23 BIND_PAT@[15; 16)
24 NAME@[15; 16)
25 IDENT@[15; 16) "y"
26 R_PAREN@[16; 17) ")"
27 WHITESPACE@[17; 18) " "
28 BLOCK@[18; 21)
29 L_CURLY@[18; 19) "{"
30 WHITESPACE@[19; 20) "\n"
31 R_CURLY@[20; 21) "}"
32 WHITESPACE@[21; 22) "\n"
33error 16: expected COLON
34error 16: expected type