File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -449,6 +449,8 @@ pub struct Open01<F>(pub F);
449
449
/// ```
450
450
pub struct Closed01 < F > ( pub F ) ;
451
451
452
+ // NOTE: Remove after next snapshot
453
+ #[ cfg( stage0) ]
452
454
#[ cfg( not( test) ) ]
453
455
mod std {
454
456
pub use core:: { option, fmt} ; // fail!()
Original file line number Diff line number Diff line change 33
33
#![ no_std]
34
34
35
35
#[ phase( plugin, link) ] extern crate core;
36
+ #[ phase( plugin, link) ] extern crate collections;
36
37
extern crate alloc;
37
- extern crate collections;
38
38
extern crate rustrt;
39
39
40
40
#[ cfg( test) ] extern crate test;
@@ -74,10 +74,8 @@ pub mod comm;
74
74
75
75
mod lock;
76
76
77
- #[ cfg( not( test) ) ]
77
+ // NOTE: Remove after next snapshot
78
+ #[ cfg( stage0, not( test) ) ]
78
79
mod std {
79
- // NOTE: Remove after next snapshot
80
- #[ cfg( stage0) ] pub use core:: { option, cmp, clone} ;
81
-
82
- pub use core:: fmt; // for fail!()
80
+ pub use core:: { fmt, option, cmp, clone} ;
83
81
}
You can’t perform that action at this time.
0 commit comments