2012-12-10 19:32:48 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
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() { }
|