aboutsummaryrefslogtreecommitdiff
path: root/tests/data/parser/ok/0008_mod_item.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-01-09 19:35:55 +0000
committerAleksey Kladov <[email protected]>2018-01-09 19:35:55 +0000
commit1544e89c49c67df00fc72d841f3e39be792cbe2b (patch)
tree1c8354cd22a77cfc32a2026fa1535cc2986007f8 /tests/data/parser/ok/0008_mod_item.rs
parent7f8ca07d864b5ec8e668c48c4c029dd0584eae4a (diff)
G: mod item
Diffstat (limited to 'tests/data/parser/ok/0008_mod_item.rs')
-rw-r--r--tests/data/parser/ok/0008_mod_item.rs17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/data/parser/ok/0008_mod_item.rs b/tests/data/parser/ok/0008_mod_item.rs
new file mode 100644
index 000000000..d22993bc1
--- /dev/null
+++ b/tests/data/parser/ok/0008_mod_item.rs
@@ -0,0 +1,17 @@
1mod a;
2
3mod b {
4}
5
6mod c {
7 fn foo() {
8 }
9 struct S {}
10}
11
12mod d {
13 #![attr]
14 mod e;
15 mod f {
16 }
17} \ No newline at end of file