2012-12-13 13:05:22 -08:00
|
|
|
// xfail-fast
|
|
|
|
|
2012-12-10 17:32:48 -08: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 16:09:44 -08:00
|
|
|
// Test that a glob-export functions as an explicit
|
|
|
|
// named export when referenced from outside its scope.
|
2012-02-17 13:39:15 -08:00
|
|
|
|
2012-05-22 10:54:12 -07:00
|
|
|
// Modified to not use export since it's going away. --pcw
|
|
|
|
|
2012-02-17 13:39:15 -08:00
|
|
|
mod foo {
|
2012-09-21 18:10:45 -07:00
|
|
|
#[legacy_exports];
|
2012-12-13 13:05:22 -08:00
|
|
|
use foo::bar::*;
|
2012-05-22 10:54:12 -07:00
|
|
|
export a;
|
2012-12-13 13:05:22 -08:00
|
|
|
export bar;
|
2012-02-17 13:39:15 -08:00
|
|
|
mod bar {
|
2012-09-21 18:10:45 -07:00
|
|
|
#[legacy_exports];
|
2012-02-17 13:39:15 -08:00
|
|
|
const a : int = 10;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() { let v = foo::a; }
|