File tree Expand file tree Collapse file tree 8 files changed +20
-0
lines changed Expand file tree Collapse file tree 8 files changed +20
-0
lines changed Original file line number Diff line number Diff line change 1+ mod utils;
2+ pub
3+ struct A ;
Original file line number Diff line number Diff line change 1+ pub struct B ;
Original file line number Diff line number Diff line change 1+ #[ cfg_attr( windows, path = "imp-a.rs" ) ]
2+ #[ cfg_attr( not( windows) , path = "imp-b.rs" ) ]
3+ mod imp;
4+ pub use imp:: A ;
Original file line number Diff line number Diff line change 1+ pub fn fuga ( ) {
2+
3+
4+ }
Original file line number Diff line number Diff line change 1+ mod utils;
2+ pub struct A ;
Original file line number Diff line number Diff line change 1+ pub struct B ;
Original file line number Diff line number Diff line change 1+ #[ cfg_attr( windows, path = "imp-a.rs" ) ]
2+ #[ cfg_attr( not( windows) , path = "imp-b.rs" ) ]
3+ mod imp;
4+ pub use imp:: A ;
Original file line number Diff line number Diff line change 1+ pub fn fuga ( ) { }
You can’t perform that action at this time.
0 commit comments