File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ extern crate futures;
109
109
use futures::Future;
110
110
111
111
mod foo {
112
- struct Bar;
112
+ pub struct Bar;
113
113
}
114
114
115
115
use foo::Bar;
@@ -140,7 +140,7 @@ crate` line:
140
140
use futures::Future;
141
141
142
142
mod foo {
143
- struct Bar;
143
+ pub struct Bar;
144
144
}
145
145
146
146
use foo::Bar;
@@ -172,7 +172,7 @@ mod submodule {
172
172
use futures::Future;
173
173
174
174
mod foo {
175
- struct Bar;
175
+ pub struct Bar;
176
176
}
177
177
178
178
use foo::Bar;
@@ -224,7 +224,7 @@ extern crate futures;
224
224
use futures::Future;
225
225
226
226
mod foo {
227
- struct Bar;
227
+ pub struct Bar;
228
228
}
229
229
230
230
use foo::Bar;
@@ -239,7 +239,7 @@ Now looks like this:
239
239
use futures::Future;
240
240
241
241
mod foo {
242
- struct Bar;
242
+ pub struct Bar;
243
243
}
244
244
245
245
// 'crate' means the current crate
You can’t perform that action at this time.
0 commit comments