2012-02-21 18:09:44 -06:00
|
|
|
// Test that a glob-export functions as an import
|
|
|
|
// when referenced within its own local scope.
|
|
|
|
|
2012-05-22 12:54:12 -05:00
|
|
|
// Modified to not use export since it's going away. --pcw
|
|
|
|
|
2012-02-21 18:09:44 -06:00
|
|
|
mod foo {
|
2012-09-21 20:10:45 -05:00
|
|
|
#[legacy_exports];
|
2012-09-07 20:08:21 -05:00
|
|
|
use bar::*;
|
2012-02-21 18:09:44 -06:00
|
|
|
mod bar {
|
2012-09-21 20:10:45 -05:00
|
|
|
#[legacy_exports];
|
2012-02-21 18:09:44 -06:00
|
|
|
const a : int = 10;
|
|
|
|
}
|
|
|
|
fn zum() {
|
|
|
|
let b = a;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() { }
|