File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,10 @@ $ tree .
19
19
└── split.rs
20
20
```
21
21
22
+ <!--
22
23
In `split.rs`:
24
+ -->
25
+ ` split.rs ` は以下のようになります:
23
26
24
27
``` rust,ignore
25
28
// This declaration will look for a file named `my.rs` and will
@@ -44,7 +47,10 @@ fn main() {
44
47
45
48
```
46
49
50
+ <!--
47
51
In `my.rs`:
52
+ -->
53
+ ` my.rs ` は以下のようになります:
48
54
49
55
``` rust,ignore
50
56
// Similarly `mod inaccessible` and `mod nested` will locate the `nested.rs`
@@ -70,7 +76,10 @@ pub fn indirect_access() {
70
76
}
71
77
```
72
78
79
+ <!--
73
80
In `my/nested.rs`:
81
+ -->
82
+ ` my/nested.rs ` は以下のようになります:
74
83
75
84
``` rust,ignore
76
85
pub fn function() {
@@ -83,7 +92,10 @@ fn private_function() {
83
92
}
84
93
```
85
94
95
+ <!--
86
96
In `my/inaccessible.rs`:
97
+ -->
98
+ ` my/inaccessible.rs ` は以下のようになります:
87
99
88
100
``` rust,ignore
89
101
#[allow(dead_code)]
You can’t perform that action at this time.
0 commit comments