Closed
Description
This compiles on stable but not on nightly:
extern crate std;
pub use a::*;
pub use b::*;
pub mod a {
use std;
}
pub mod b {
use std;
}
fn main() { }
Here's the error:
<anon>:9:9: 9:12 error: unresolved import [E0432]
<anon>:9 use std;
^~~
<anon>:9:9: 9:12 help: see the detailed explanation for E0432
<anon>:5:9: 5:12 error: unresolved import [E0432]
<anon>:5 use std;
^~~
<anon>:5:9: 5:12 help: see the detailed explanation for E0432
error: aborting due to 2 previous errors
playpen: application terminated with error code 101