aboutsummaryrefslogtreecommitdiff
path: root/tests/data
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-07-31 15:43:44 +0100
committerAleksey Kladov <[email protected]>2018-07-31 15:43:44 +0100
commitedf2b17a572b56371cfc29bbc3a686edcb12782c (patch)
tree44f07e4a5bbbc9f3de23e87a35b56b0b61a4dfda /tests/data
parent9f87c9a3f927d3b7a3cbb92818c45c979ece693b (diff)
allow items inside blocks
Diffstat (limited to 'tests/data')
-rw-r--r--tests/data/parser/inline/0053_block_items.rs1
-rw-r--r--tests/data/parser/inline/0053_block_items.txt28
2 files changed, 29 insertions, 0 deletions
diff --git a/tests/data/parser/inline/0053_block_items.rs b/tests/data/parser/inline/0053_block_items.rs
new file mode 100644
index 000000000..d9868718c
--- /dev/null
+++ b/tests/data/parser/inline/0053_block_items.rs
@@ -0,0 +1 @@
fn a() { fn b() {} }
diff --git a/tests/data/parser/inline/0053_block_items.txt b/tests/data/parser/inline/0053_block_items.txt
new file mode 100644
index 000000000..1b1158aa5
--- /dev/null
+++ b/tests/data/parser/inline/0053_block_items.txt
@@ -0,0 +1,28 @@
1FILE@[0; 21)
2 FN_ITEM@[0; 21)
3 FN_KW@[0; 2)
4 NAME@[2; 4)
5 WHITESPACE@[2; 3)
6 IDENT@[3; 4) "a"
7 PARAM_LIST@[4; 7)
8 L_PAREN@[4; 5)
9 R_PAREN@[5; 6)
10 WHITESPACE@[6; 7)
11 BLOCK@[7; 21)
12 L_CURLY@[7; 8)
13 FN_ITEM@[8; 19)
14 WHITESPACE@[8; 9)
15 FN_KW@[9; 11)
16 NAME@[11; 13)
17 WHITESPACE@[11; 12)
18 IDENT@[12; 13) "b"
19 PARAM_LIST@[13; 16)
20 L_PAREN@[13; 14)
21 R_PAREN@[14; 15)
22 WHITESPACE@[15; 16)
23 BLOCK@[16; 19)
24 L_CURLY@[16; 17)
25 R_CURLY@[17; 18)
26 WHITESPACE@[18; 19)
27 R_CURLY@[19; 20)
28 WHITESPACE@[20; 21)