From 592c2e1db4cb4a50aa2b5e0b7cf6b03eca33d698 Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Wed, 30 Jan 2013 15:56:40 -0800 Subject: [PATCH] test: Remove export from the tests, language, and libraries. rs=deexporting --- .../crate-method-reexport-grrrrrrr2.rs | 6 +- src/test/run-pass/alt-path.rs | 3 +- src/test/run-pass/attr-before-view-item2.rs | 5 +- src/test/run-pass/binops.rs | 5 +- src/test/run-pass/c-stack-as-value.rs | 3 +- src/test/run-pass/c-stack-returning-int64.rs | 5 +- src/test/run-pass/cci_borrow.rs | 4 +- src/test/run-pass/cci_capture_clause.rs | 4 +- src/test/run-pass/cci_nested_exe.rs | 5 +- src/test/run-pass/cci_no_inline_exe.rs | 4 +- src/test/run-pass/class-exports.rs | 19 ++--- src/test/run-pass/conditional-compile.rs | 27 +++---- src/test/run-pass/crateresolve2.rs | 9 +-- src/test/run-pass/crateresolve3.rs | 6 +- src/test/run-pass/crateresolve4.rs | 14 ++-- src/test/run-pass/export-abstract-tag.rs | 8 +- .../run-pass/export-glob-imports-target.rs | 8 +- src/test/run-pass/export-glob.rs | 29 ------- src/test/run-pass/export-multi.rs | 7 +- src/test/run-pass/export-non-interference.rs | 5 +- src/test/run-pass/export-tag-variant.rs | 6 +- src/test/run-pass/export-unexported-dep.rs | 8 +- src/test/run-pass/expr-scope.rs | 4 +- src/test/run-pass/extern-call-deep.rs | 5 +- src/test/run-pass/extern-call-deep2.rs | 5 +- src/test/run-pass/extern-call-scrub.rs | 5 +- src/test/run-pass/extern-call.rs | 5 +- src/test/run-pass/extern-stress.rs | 5 +- src/test/run-pass/extern-yield.rs | 5 +- src/test/run-pass/foreign-dupe.rs | 6 +- src/test/run-pass/foreign-fn-linkname.rs | 3 +- src/test/run-pass/foreign-lib-path.rs | 5 +- src/test/run-pass/foreign-mod-unused-const.rs | 3 +- src/test/run-pass/foreign-no-abi.rs | 3 +- src/test/run-pass/foreign-struct.rs | 3 +- src/test/run-pass/foreign2.rs | 14 ++-- src/test/run-pass/generic-fn-twice.rs | 3 +- src/test/run-pass/global-scope.rs | 11 +-- src/test/run-pass/import-from-foreign.rs | 10 +-- src/test/run-pass/import-from.rs | 5 +- src/test/run-pass/import-glob-0.rs | 30 +++----- src/test/run-pass/import-glob-1.rs | 60 --------------- src/test/run-pass/import-trailing-comma.rs | 8 +- src/test/run-pass/import.rs | 6 +- src/test/run-pass/import2.rs | 3 +- src/test/run-pass/import3.rs | 6 +- src/test/run-pass/import4.rs | 3 +- src/test/run-pass/import5.rs | 10 +-- src/test/run-pass/import6.rs | 10 +-- src/test/run-pass/import7.rs | 16 ++-- src/test/run-pass/import8.rs | 3 +- src/test/run-pass/inner-module.rs | 8 +- src/test/run-pass/intrinsic-alignment.rs | 5 +- src/test/run-pass/intrinsic-atomics.rs | 25 +++---- src/test/run-pass/intrinsic-frame-address.rs | 3 +- src/test/run-pass/issue-1251.rs | 3 +- src/test/run-pass/issue-1866.rs | 16 ++-- src/test/run-pass/issue-2904.rs | 5 +- src/test/run-pass/item-attributes.rs | 75 ++++++------------- src/test/run-pass/item-name-overload.rs | 6 +- .../run-pass/keyword-changes-2012-07-31.rs | 3 +- src/test/run-pass/mod-inside-fn.rs | 5 +- src/test/run-pass/mod-view-items.rs | 3 +- src/test/run-pass/morestack-address.rs | 3 +- src/test/run-pass/morestack6.rs | 15 ++-- src/test/run-pass/nil-decl-in-foreign.rs | 5 +- src/test/run-pass/path.rs | 3 +- src/test/run-pass/rec-align-u32.rs | 15 ++-- src/test/run-pass/rec-align-u64.rs | 26 +++---- src/test/run-pass/rt-sched-1.rs | 9 +-- src/test/run-pass/self-shadowing-import.rs | 12 +-- src/test/run-pass/static-method-xcrate.rs | 1 - src/test/run-pass/struct-return.rs | 5 +- .../run-pass/syntax-extension-source-utils.rs | 11 +-- src/test/run-pass/tag-exports.rs | 19 +---- src/test/run-pass/type-in-nested-module.rs | 8 +- src/test/run-pass/use-import-export.rs | 6 +- src/test/run-pass/use-mod.rs | 6 +- src/test/run-pass/use.rs | 5 +- src/test/run-pass/warn-ctypes-inhibit.rs | 5 +- src/test/run-pass/x86stdcall2.rs | 8 +- 81 files changed, 234 insertions(+), 530 deletions(-) delete mode 100644 src/test/run-pass/export-glob.rs delete mode 100644 src/test/run-pass/import-glob-1.rs diff --git a/src/test/auxiliary/crate-method-reexport-grrrrrrr2.rs b/src/test/auxiliary/crate-method-reexport-grrrrrrr2.rs index 1a27bce1e02e..847b6d5b2bba 100644 --- a/src/test/auxiliary/crate-method-reexport-grrrrrrr2.rs +++ b/src/test/auxiliary/crate-method-reexport-grrrrrrr2.rs @@ -10,9 +10,9 @@ #[link(name = "crate_method_reexport_grrrrrrr2")]; -use name_pool::add; +pub use name_pool::add; -mod name_pool { +pub mod name_pool { pub type name_pool = (); pub trait add { @@ -26,7 +26,7 @@ mod name_pool { } pub mod rust { - use name_pool::add; + pub use name_pool::add; pub type rt = @(); diff --git a/src/test/run-pass/alt-path.rs b/src/test/run-pass/alt-path.rs index d84f96b8f3f9..0d00dec67608 100644 --- a/src/test/run-pass/alt-path.rs +++ b/src/test/run-pass/alt-path.rs @@ -11,8 +11,7 @@ mod m1 { - #[legacy_exports]; - enum foo { foo1, foo2, } + pub enum foo { foo1, foo2, } } fn bar(x: m1::foo) { match x { m1::foo1 => { } m1::foo2 => { } } } diff --git a/src/test/run-pass/attr-before-view-item2.rs b/src/test/run-pass/attr-before-view-item2.rs index 2e5a07d62bdb..072a0ebb0a70 100644 --- a/src/test/run-pass/attr-before-view-item2.rs +++ b/src/test/run-pass/attr-before-view-item2.rs @@ -11,9 +11,8 @@ // error-pattern:expected item mod m { - #[legacy_exports]; - #[foo = "bar"] - extern mod std; + #[foo = "bar"] + extern mod std; } fn main() { diff --git a/src/test/run-pass/binops.rs b/src/test/run-pass/binops.rs index 4f58e41766b8..04dc555e4044 100644 --- a/src/test/run-pass/binops.rs +++ b/src/test/run-pass/binops.rs @@ -82,9 +82,8 @@ fn test_ptr() { #[abi = "cdecl"] #[nolink] extern mod test { - #[legacy_exports]; - fn rust_get_sched_id() -> libc::intptr_t; - fn get_task_id() -> libc::intptr_t; + pub fn rust_get_sched_id() -> libc::intptr_t; + pub fn get_task_id() -> libc::intptr_t; } struct p { diff --git a/src/test/run-pass/c-stack-as-value.rs b/src/test/run-pass/c-stack-as-value.rs index b54335599a4a..5d435fa646ad 100644 --- a/src/test/run-pass/c-stack-as-value.rs +++ b/src/test/run-pass/c-stack-as-value.rs @@ -10,8 +10,7 @@ #[abi = "cdecl"] extern mod rustrt { - #[legacy_exports]; - fn get_task_id() -> libc::intptr_t; + pub fn get_task_id() -> libc::intptr_t; } fn main() { diff --git a/src/test/run-pass/c-stack-returning-int64.rs b/src/test/run-pass/c-stack-returning-int64.rs index a0377a513544..aec0054a3c31 100644 --- a/src/test/run-pass/c-stack-returning-int64.rs +++ b/src/test/run-pass/c-stack-returning-int64.rs @@ -13,9 +13,8 @@ extern mod std; #[abi = "cdecl"] #[nolink] extern mod libc { - #[legacy_exports]; - fn atol(x: *u8) -> int; - fn atoll(x: *u8) -> i64; + pub fn atol(x: *u8) -> int; + pub fn atoll(x: *u8) -> i64; } fn atol(s: ~str) -> int { diff --git a/src/test/run-pass/cci_borrow.rs b/src/test/run-pass/cci_borrow.rs index 98590e5c2af0..def739c1002d 100644 --- a/src/test/run-pass/cci_borrow.rs +++ b/src/test/run-pass/cci_borrow.rs @@ -11,12 +11,10 @@ // xfail-fast - check-fast doesn't understand aux-build // aux-build:cci_borrow_lib.rs -#[legacy_exports]; - extern mod cci_borrow_lib; use cci_borrow_lib::foo; -fn main() { +pub fn main() { let p = @22u; let r = foo(p); debug!("r=%u", r); diff --git a/src/test/run-pass/cci_capture_clause.rs b/src/test/run-pass/cci_capture_clause.rs index 6a04dbee8dca..bb7406527094 100644 --- a/src/test/run-pass/cci_capture_clause.rs +++ b/src/test/run-pass/cci_capture_clause.rs @@ -14,10 +14,8 @@ // This test makes sure we can do cross-crate inlining on functions // that use capture clauses. -#[legacy_exports]; - extern mod cci_capture_clause; -fn main() { +pub fn main() { cci_capture_clause::foo(()).recv() } diff --git a/src/test/run-pass/cci_nested_exe.rs b/src/test/run-pass/cci_nested_exe.rs index f603c251fa60..26bfd1ad4dc1 100644 --- a/src/test/run-pass/cci_nested_exe.rs +++ b/src/test/run-pass/cci_nested_exe.rs @@ -11,13 +11,10 @@ // xfail-fast - check-fast doesn't understand aux-build // aux-build:cci_nested_lib.rs -#[legacy_modes]; -#[legacy_exports]; - extern mod cci_nested_lib; use cci_nested_lib::*; -fn main() { +pub fn main() { let lst = new_int_alist(); alist_add(lst, 22, ~"hi"); alist_add(lst, 44, ~"ho"); diff --git a/src/test/run-pass/cci_no_inline_exe.rs b/src/test/run-pass/cci_no_inline_exe.rs index 0d9a122079d1..f0adaca82422 100644 --- a/src/test/run-pass/cci_no_inline_exe.rs +++ b/src/test/run-pass/cci_no_inline_exe.rs @@ -11,12 +11,10 @@ // xfail-fast - check-fast doesn't understand aux-build // aux-build:cci_no_inline_lib.rs -#[legacy_exports]; - extern mod cci_no_inline_lib; use cci_no_inline_lib::iter; -fn main() { +pub fn main() { // Check that a cross-crate call function not marked as inline // does not, in fact, get inlined. Also, perhaps more // importantly, checks that our scheme of using diff --git a/src/test/run-pass/class-exports.rs b/src/test/run-pass/class-exports.rs index b3e85c518956..184d27883292 100644 --- a/src/test/run-pass/class-exports.rs +++ b/src/test/run-pass/class-exports.rs @@ -16,24 +16,21 @@ use kitty::*; mod kitty { - #[legacy_exports]; - export cat; - struct cat { - meows: uint, - name: ~str, - } + pub struct cat { + meows: uint, + name: ~str, + } - impl cat { - fn get_name() -> ~str { copy self.name } - } + pub impl cat { + fn get_name() -> ~str { copy self.name } + } - fn cat(in_name: ~str) -> cat { + pub fn cat(in_name: ~str) -> cat { cat { name: in_name, meows: 0u } } - } fn main() { diff --git a/src/test/run-pass/conditional-compile.rs b/src/test/run-pass/conditional-compile.rs index 5ddea6055870..404a58e1a4b2 100644 --- a/src/test/run-pass/conditional-compile.rs +++ b/src/test/run-pass/conditional-compile.rs @@ -22,15 +22,13 @@ const b: bool = true; #[cfg(bogus)] #[abi = "cdecl"] extern mod rustrt { - #[legacy_exports]; // This symbol doesn't exist and would be a link error if this // module was translated - fn bogus(); + pub fn bogus(); } #[abi = "cdecl"] -extern mod rustrt { - #[legacy_exports]; } +extern mod rustrt {} #[cfg(bogus)] type t = int; @@ -66,21 +64,18 @@ fn r(i:int) -> r { #[cfg(bogus)] mod m { - #[legacy_exports]; // This needs to parse but would fail in typeck. Since it's not in // the current config it should not be typechecked. - fn bogus() { return 0; } + pub fn bogus() { return 0; } } mod m { - #[legacy_exports]; - // Submodules have slightly different code paths than the top-level // module, so let's make sure this jazz works here as well #[cfg(bogus)] - fn f() { } + pub fn f() { } - fn f() { } + pub fn f() { } } // Since the bogus configuration isn't defined main will just be @@ -111,23 +106,19 @@ fn test_in_fn_ctxt() { } mod test_foreign_items { - #[legacy_exports]; #[abi = "cdecl"] - extern mod rustrt { - #[legacy_exports]; + pub extern mod rustrt { #[cfg(bogus)] - fn rust_getcwd() -> ~str; - fn rust_getcwd() -> ~str; + pub fn rust_getcwd() -> ~str; + pub fn rust_getcwd() -> ~str; } } mod test_use_statements { - #[legacy_exports]; #[cfg(bogus)] use flippity_foo; - extern mod rustrt { - #[legacy_exports]; + pub extern mod rustrt { #[cfg(bogus)] use flippity_foo; } diff --git a/src/test/run-pass/crateresolve2.rs b/src/test/run-pass/crateresolve2.rs index 083223feb3b9..407c8792d886 100644 --- a/src/test/run-pass/crateresolve2.rs +++ b/src/test/run-pass/crateresolve2.rs @@ -14,21 +14,18 @@ // aux-build:crateresolve2-3.rs mod a { - #[legacy_exports]; extern mod crateresolve2(vers = "0.1"); - fn f() { assert crateresolve2::f() == 10; } + pub fn f() { assert crateresolve2::f() == 10; } } mod b { - #[legacy_exports]; extern mod crateresolve2(vers = "0.2"); - fn f() { assert crateresolve2::f() == 20; } + pub fn f() { assert crateresolve2::f() == 20; } } mod c { - #[legacy_exports]; extern mod crateresolve2(vers = "0.3"); - fn f() { assert crateresolve2::f() == 30; } + pub fn f() { assert crateresolve2::f() == 30; } } fn main() { diff --git a/src/test/run-pass/crateresolve3.rs b/src/test/run-pass/crateresolve3.rs index c82a71ccb740..e92febf96379 100644 --- a/src/test/run-pass/crateresolve3.rs +++ b/src/test/run-pass/crateresolve3.rs @@ -16,15 +16,13 @@ // as long as no name collision on invoked functions. mod a { - #[legacy_exports]; extern mod crateresolve3(vers = "0.1"); - fn f() { assert crateresolve3::f() == 10; } + pub fn f() { assert crateresolve3::f() == 10; } } mod b { - #[legacy_exports]; extern mod crateresolve3(vers = "0.2"); - fn f() { assert crateresolve3::g() == 20; } + pub fn f() { assert crateresolve3::g() == 20; } } fn main() { diff --git a/src/test/run-pass/crateresolve4.rs b/src/test/run-pass/crateresolve4.rs index feede6336d81..4e664c41aa33 100644 --- a/src/test/run-pass/crateresolve4.rs +++ b/src/test/run-pass/crateresolve4.rs @@ -14,21 +14,17 @@ // aux-build:crateresolve4b-1.rs // aux-build:crateresolve4b-2.rs -#[legacy_exports]; - -mod a { - #[legacy_exports]; +pub mod a { extern mod crateresolve4b(vers = "0.1"); - fn f() { assert crateresolve4b::f() == 20; } + pub fn f() { assert crateresolve4b::f() == 20; } } -mod b { - #[legacy_exports]; +pub mod b { extern mod crateresolve4b(vers = "0.2"); - fn f() { assert crateresolve4b::g() == 10; } + pub fn f() { assert crateresolve4b::g() == 10; } } -fn main() { +pub fn main() { a::f(); b::f(); } diff --git a/src/test/run-pass/export-abstract-tag.rs b/src/test/run-pass/export-abstract-tag.rs index 745201b2eda5..cc7793fdf289 100644 --- a/src/test/run-pass/export-abstract-tag.rs +++ b/src/test/run-pass/export-abstract-tag.rs @@ -12,13 +12,9 @@ // sort of ADT. mod foo { - #[legacy_exports]; - export t; - export f; + pub enum t { t1, } - enum t { t1, } - - fn f() -> t { return t1; } + pub fn f() -> t { return t1; } } fn main() { let v: foo::t = foo::f(); } diff --git a/src/test/run-pass/export-glob-imports-target.rs b/src/test/run-pass/export-glob-imports-target.rs index 5f547e09c895..33a54b85ea84 100644 --- a/src/test/run-pass/export-glob-imports-target.rs +++ b/src/test/run-pass/export-glob-imports-target.rs @@ -16,13 +16,11 @@ // Modified to not use export since it's going away. --pcw mod foo { - #[legacy_exports]; use foo::bar::*; - mod bar { - #[legacy_exports]; - const a : int = 10; + pub mod bar { + pub const a : int = 10; } - fn zum() { + pub fn zum() { let b = a; } } diff --git a/src/test/run-pass/export-glob.rs b/src/test/run-pass/export-glob.rs deleted file mode 100644 index 4c0287843fc0..000000000000 --- a/src/test/run-pass/export-glob.rs +++ /dev/null @@ -1,29 +0,0 @@ -// xfail-fast - -// 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 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - -// Test that a glob-export functions as an explicit -// named export when referenced from outside its scope. - -// Modified to not use export since it's going away. --pcw - -mod foo { - #[legacy_exports]; - use foo::bar::*; - export a; - export bar; - mod bar { - #[legacy_exports]; - const a : int = 10; - } -} - -fn main() { let v = foo::a; } diff --git a/src/test/run-pass/export-multi.rs b/src/test/run-pass/export-multi.rs index c9d7fe4d6b9d..d19f7c0d31c8 100644 --- a/src/test/run-pass/export-multi.rs +++ b/src/test/run-pass/export-multi.rs @@ -14,11 +14,8 @@ use m::f; use m::g; mod m { - #[legacy_exports]; - export f, g; - - fn f() { } - fn g() { } + pub fn f() { } + pub fn g() { } } fn main() { f(); g(); m::f(); m::g(); } diff --git a/src/test/run-pass/export-non-interference.rs b/src/test/run-pass/export-non-interference.rs index da56eacca027..67f8191ae585 100644 --- a/src/test/run-pass/export-non-interference.rs +++ b/src/test/run-pass/export-non-interference.rs @@ -9,9 +9,6 @@ // except according to those terms. -export foo; -export main; - enum list_cell { cons(@list_cell), nil } -fn main() { } +pub fn main() { } diff --git a/src/test/run-pass/export-tag-variant.rs b/src/test/run-pass/export-tag-variant.rs index bbfd88621c1a..06b513c4ad93 100644 --- a/src/test/run-pass/export-tag-variant.rs +++ b/src/test/run-pass/export-tag-variant.rs @@ -8,12 +8,8 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -// Export the enum variants, without the enum - mod foo { - #[legacy_exports]; - export t1; - enum t { t1, } + pub enum t { t1, } } fn main() { let v = foo::t1; } diff --git a/src/test/run-pass/export-unexported-dep.rs b/src/test/run-pass/export-unexported-dep.rs index b571f3de9867..1119bfde2fc5 100644 --- a/src/test/run-pass/export-unexported-dep.rs +++ b/src/test/run-pass/export-unexported-dep.rs @@ -12,10 +12,6 @@ // that are not exported, allowing for a sort of poor-man's ADT mod foo { - #[legacy_exports]; - export f; - export g; - // not exported enum t { t1, t2, } @@ -26,9 +22,9 @@ mod foo { pure fn ne(&self, other: &t) -> bool { !(*self).eq(other) } } - fn f() -> t { return t1; } + pub fn f() -> t { return t1; } - fn g(v: t) { assert (v == t1); } + pub fn g(v: t) { assert (v == t1); } } fn main() { foo::g(foo::f()); } diff --git a/src/test/run-pass/expr-scope.rs b/src/test/run-pass/expr-scope.rs index f418f2703d50..35e3ff60243c 100644 --- a/src/test/run-pass/expr-scope.rs +++ b/src/test/run-pass/expr-scope.rs @@ -11,7 +11,5 @@ // Regression test for issue #762 // xfail-fast -#[legacy_exports]; - -fn f() { } +pub fn f() { } fn main() { return ::f(); } diff --git a/src/test/run-pass/extern-call-deep.rs b/src/test/run-pass/extern-call-deep.rs index 18febc51b3d0..da09dd02be35 100644 --- a/src/test/run-pass/extern-call-deep.rs +++ b/src/test/run-pass/extern-call-deep.rs @@ -9,9 +9,8 @@ // except according to those terms. extern mod rustrt { - #[legacy_exports]; - fn rust_dbg_call(cb: *u8, - data: libc::uintptr_t) -> libc::uintptr_t; + pub fn rust_dbg_call(cb: *u8, + data: libc::uintptr_t) -> libc::uintptr_t; } extern fn cb(data: libc::uintptr_t) -> libc::uintptr_t { diff --git a/src/test/run-pass/extern-call-deep2.rs b/src/test/run-pass/extern-call-deep2.rs index a0c1d586018c..52753e2549f2 100644 --- a/src/test/run-pass/extern-call-deep2.rs +++ b/src/test/run-pass/extern-call-deep2.rs @@ -9,9 +9,8 @@ // except according to those terms. extern mod rustrt { - #[legacy_exports]; - fn rust_dbg_call(cb: *u8, - data: libc::uintptr_t) -> libc::uintptr_t; + pub fn rust_dbg_call(cb: *u8, + data: libc::uintptr_t) -> libc::uintptr_t; } extern fn cb(data: libc::uintptr_t) -> libc::uintptr_t { diff --git a/src/test/run-pass/extern-call-scrub.rs b/src/test/run-pass/extern-call-scrub.rs index 407b0d5b028f..1db40fbcc214 100644 --- a/src/test/run-pass/extern-call-scrub.rs +++ b/src/test/run-pass/extern-call-scrub.rs @@ -13,9 +13,8 @@ // directions extern mod rustrt { - #[legacy_exports]; - fn rust_dbg_call(cb: *u8, - data: libc::uintptr_t) -> libc::uintptr_t; + pub fn rust_dbg_call(cb: *u8, + data: libc::uintptr_t) -> libc::uintptr_t; } extern fn cb(data: libc::uintptr_t) -> libc::uintptr_t { diff --git a/src/test/run-pass/extern-call.rs b/src/test/run-pass/extern-call.rs index dec8416f2b4c..2c92202992d3 100644 --- a/src/test/run-pass/extern-call.rs +++ b/src/test/run-pass/extern-call.rs @@ -9,9 +9,8 @@ // except according to those terms. extern mod rustrt { - #[legacy_exports]; - fn rust_dbg_call(cb: *u8, - data: libc::uintptr_t) -> libc::uintptr_t; + pub fn rust_dbg_call(cb: *u8, + data: libc::uintptr_t) -> libc::uintptr_t; } extern fn cb(data: libc::uintptr_t) -> libc::uintptr_t { diff --git a/src/test/run-pass/extern-stress.rs b/src/test/run-pass/extern-stress.rs index 9b816dc34711..bd6d597c74c0 100644 --- a/src/test/run-pass/extern-stress.rs +++ b/src/test/run-pass/extern-stress.rs @@ -12,9 +12,8 @@ // while holding onto C stacks extern mod rustrt { - #[legacy_exports]; - fn rust_dbg_call(cb: *u8, - data: libc::uintptr_t) -> libc::uintptr_t; + pub fn rust_dbg_call(cb: *u8, + data: libc::uintptr_t) -> libc::uintptr_t; } extern fn cb(data: libc::uintptr_t) -> libc::uintptr_t { diff --git a/src/test/run-pass/extern-yield.rs b/src/test/run-pass/extern-yield.rs index 9667f5221681..1ec8f8ab8a3e 100644 --- a/src/test/run-pass/extern-yield.rs +++ b/src/test/run-pass/extern-yield.rs @@ -9,9 +9,8 @@ // except according to those terms. extern mod rustrt { - #[legacy_exports]; - fn rust_dbg_call(cb: *u8, - data: libc::uintptr_t) -> libc::uintptr_t; + pub fn rust_dbg_call(cb: *u8, + data: libc::uintptr_t) -> libc::uintptr_t; } extern fn cb(data: libc::uintptr_t) -> libc::uintptr_t { diff --git a/src/test/run-pass/foreign-dupe.rs b/src/test/run-pass/foreign-dupe.rs index a719926ddbe0..b06afbfe55e4 100644 --- a/src/test/run-pass/foreign-dupe.rs +++ b/src/test/run-pass/foreign-dupe.rs @@ -14,15 +14,13 @@ #[abi = "cdecl"] #[link_name = "rustrt"] extern mod rustrt1 { - #[legacy_exports]; - fn last_os_error() -> ~str; + pub fn last_os_error() -> ~str; } #[abi = "cdecl"] #[link_name = "rustrt"] extern mod rustrt2 { - #[legacy_exports]; - fn last_os_error() -> ~str; + pub fn last_os_error() -> ~str; } fn main() { diff --git a/src/test/run-pass/foreign-fn-linkname.rs b/src/test/run-pass/foreign-fn-linkname.rs index 9df30d90d1c4..ffadd4bd41be 100644 --- a/src/test/run-pass/foreign-fn-linkname.rs +++ b/src/test/run-pass/foreign-fn-linkname.rs @@ -14,9 +14,8 @@ extern mod std; #[nolink] #[abi = "cdecl"] extern mod libc { - #[legacy_exports]; #[link_name = "strlen"] - fn my_strlen(str: *u8) -> uint; + pub fn my_strlen(str: *u8) -> uint; } fn strlen(str: ~str) -> uint { diff --git a/src/test/run-pass/foreign-lib-path.rs b/src/test/run-pass/foreign-lib-path.rs index c0c4f6b69d3a..b2935ba9f104 100644 --- a/src/test/run-pass/foreign-lib-path.rs +++ b/src/test/run-pass/foreign-lib-path.rs @@ -16,10 +16,9 @@ // wouthout providing a -L argument to the compiler, and that // will also be found successfully at runtime. extern mod WHATGOESHERE { - #[legacy_exports]; - fn IDONTKNOW() -> u32; + pub fn IDONTKNOW() -> u32; } fn main() { assert IDONTKNOW() == 0x_BAD_DOOD_u32; -} \ No newline at end of file +} diff --git a/src/test/run-pass/foreign-mod-unused-const.rs b/src/test/run-pass/foreign-mod-unused-const.rs index 97feead85f34..f05d40ad1d68 100644 --- a/src/test/run-pass/foreign-mod-unused-const.rs +++ b/src/test/run-pass/foreign-mod-unused-const.rs @@ -10,8 +10,7 @@ #[nolink] extern mod foo { - #[legacy_exports]; - const errno: int; + pub const errno: int; } fn main() { diff --git a/src/test/run-pass/foreign-no-abi.rs b/src/test/run-pass/foreign-no-abi.rs index a5ac7e4f669b..1782778e5d7a 100644 --- a/src/test/run-pass/foreign-no-abi.rs +++ b/src/test/run-pass/foreign-no-abi.rs @@ -11,8 +11,7 @@ // ABI is cdecl by default extern mod rustrt { - #[legacy_exports]; - fn get_task_id() -> libc::intptr_t; + pub fn get_task_id() -> libc::intptr_t; } fn main() { diff --git a/src/test/run-pass/foreign-struct.rs b/src/test/run-pass/foreign-struct.rs index 9855854aa446..3adc983a0628 100644 --- a/src/test/run-pass/foreign-struct.rs +++ b/src/test/run-pass/foreign-struct.rs @@ -15,8 +15,7 @@ enum void { } #[nolink] extern mod bindgen { - #[legacy_exports]; - fn printf(++v: void); + pub fn printf(++v: void); } fn main() { } diff --git a/src/test/run-pass/foreign2.rs b/src/test/run-pass/foreign2.rs index 0018a1d62f68..9a5d747521b7 100644 --- a/src/test/run-pass/foreign2.rs +++ b/src/test/run-pass/foreign2.rs @@ -10,25 +10,21 @@ #[abi = "cdecl"] #[nolink] -extern mod bar { - #[legacy_exports]; } +extern mod bar {} #[abi = "cdecl"] #[nolink] -extern mod zed { - #[legacy_exports]; } +extern mod zed {} #[abi = "cdecl"] #[nolink] extern mod libc { - #[legacy_exports]; - fn write(fd: int, buf: *u8, - count: ::core::libc::size_t) -> ::core::libc::ssize_t; + pub fn write(fd: int, buf: *u8, + count: ::core::libc::size_t) -> ::core::libc::ssize_t; } #[abi = "cdecl"] #[nolink] -extern mod baz { - #[legacy_exports]; } +extern mod baz {} fn main() { } diff --git a/src/test/run-pass/generic-fn-twice.rs b/src/test/run-pass/generic-fn-twice.rs index ad5c1fbb98c2..2316ca61a3ce 100644 --- a/src/test/run-pass/generic-fn-twice.rs +++ b/src/test/run-pass/generic-fn-twice.rs @@ -13,8 +13,7 @@ // -*- rust -*- mod foomod { - #[legacy_exports]; - fn foo() { } + pub fn foo() { } } fn main() { foomod::foo::(); foomod::foo::(); } diff --git a/src/test/run-pass/global-scope.rs b/src/test/run-pass/global-scope.rs index 11b890d11d3b..0da95be3106a 100644 --- a/src/test/run-pass/global-scope.rs +++ b/src/test/run-pass/global-scope.rs @@ -10,14 +10,11 @@ // xfail-fast -#[legacy_exports]; +pub fn f() -> int { return 1; } -fn f() -> int { return 1; } - -mod foo { - #[legacy_exports]; - fn f() -> int { return 2; } - fn g() { assert (f() == 2); assert (::f() == 1); } +pub mod foo { + pub fn f() -> int { return 2; } + pub fn g() { assert (f() == 2); assert (::f() == 1); } } fn main() { return foo::g(); } diff --git a/src/test/run-pass/import-from-foreign.rs b/src/test/run-pass/import-from-foreign.rs index 9106f4a5e750..11affd7f9e68 100644 --- a/src/test/run-pass/import-from-foreign.rs +++ b/src/test/run-pass/import-from-foreign.rs @@ -11,17 +11,13 @@ // except according to those terms. mod spam { - #[legacy_exports]; - fn ham() { } - fn eggs() { } + pub fn ham() { } + pub fn eggs() { } } #[abi = "cdecl"] extern mod rustrt { - #[legacy_exports]; - use spam::{ham, eggs}; - export ham; - export eggs; + pub use spam::{ham, eggs}; } fn main() { rustrt::ham(); rustrt::eggs(); } diff --git a/src/test/run-pass/import-from.rs b/src/test/run-pass/import-from.rs index 390ccf35e376..7b739fa9d66e 100644 --- a/src/test/run-pass/import-from.rs +++ b/src/test/run-pass/import-from.rs @@ -13,9 +13,8 @@ use spam::{ham, eggs}; mod spam { - #[legacy_exports]; - fn ham() { } - fn eggs() { } + pub fn ham() { } + pub fn eggs() { } } fn main() { ham(); eggs(); } diff --git a/src/test/run-pass/import-glob-0.rs b/src/test/run-pass/import-glob-0.rs index 5297ee61d202..6e3d995ed410 100644 --- a/src/test/run-pass/import-glob-0.rs +++ b/src/test/run-pass/import-glob-0.rs @@ -14,30 +14,20 @@ use module_of_many_things::*; use dug::too::greedily::and::too::deep::*; mod module_of_many_things { - #[legacy_exports]; - export f1; - export f2; - export f4; - fn f1() { debug!("f1"); } - fn f2() { debug!("f2"); } + pub fn f1() { debug!("f1"); } + pub fn f2() { debug!("f2"); } fn f3() { debug!("f3"); } - fn f4() { debug!("f4"); } + pub fn f4() { debug!("f4"); } } mod dug { - #[legacy_exports]; - mod too { - #[legacy_exports]; - mod greedily { - #[legacy_exports]; - mod and { - #[legacy_exports]; - mod too { - #[legacy_exports]; - mod deep { - #[legacy_exports]; - fn nameless_fear() { debug!("Boo!"); } - fn also_redstone() { debug!("Whatever."); } + pub mod too { + pub mod greedily { + pub mod and { + pub mod too { + pub mod deep { + pub fn nameless_fear() { debug!("Boo!"); } + pub fn also_redstone() { debug!("Whatever."); } } } } diff --git a/src/test/run-pass/import-glob-1.rs b/src/test/run-pass/import-glob-1.rs deleted file mode 100644 index 32770f39c0ec..000000000000 --- a/src/test/run-pass/import-glob-1.rs +++ /dev/null @@ -1,60 +0,0 @@ -// xfail-fast - -// 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 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - -use a1::b1::word_traveler; - -mod a1 { - #[legacy_exports]; - // - mod b1 { - #[legacy_exports]; - // - use a2::b1::*; - // = move\ - export word_traveler; // | - } - // | - mod b2 { - #[legacy_exports]; - // | - use a2::b2::*; - // = move\ -\ | - export word_traveler; // | | | - } // | | | -} -// | | | -// | | | -mod a2 { - #[legacy_exports]; - // | | | - #[abi = "cdecl"] - #[nolink] - extern mod b1 { - #[legacy_exports]; - // | | | - use a1::b2::*; - // | = move/ -/ - export word_traveler; // | - } - // | - mod b2 { - #[legacy_exports]; - // | - fn word_traveler() { // | - debug!("ahoy!"); // -/ - } // - } // -} -// - - -fn main() { word_traveler(); } diff --git a/src/test/run-pass/import-trailing-comma.rs b/src/test/run-pass/import-trailing-comma.rs index 4a1ad3c51005..d04212155a86 100644 --- a/src/test/run-pass/import-trailing-comma.rs +++ b/src/test/run-pass/import-trailing-comma.rs @@ -13,11 +13,9 @@ use foo::bar::{baz, quux,}; mod foo { - #[legacy_exports]; - mod bar { - #[legacy_exports]; - fn baz() { } - fn quux() { } + pub mod bar { + pub fn baz() { } + pub fn quux() { } } } diff --git a/src/test/run-pass/import.rs b/src/test/run-pass/import.rs index a3fdefaeba60..2379cca3111b 100644 --- a/src/test/run-pass/import.rs +++ b/src/test/run-pass/import.rs @@ -11,15 +11,13 @@ // except according to those terms. mod foo { - #[legacy_exports]; - fn x(y: int) { log(debug, y); } + pub fn x(y: int) { log(debug, y); } } mod bar { - #[legacy_exports]; use foo::x; use z = foo::x; - fn thing() { x(10); z(10); } + pub fn thing() { x(10); z(10); } } fn main() { bar::thing(); } diff --git a/src/test/run-pass/import2.rs b/src/test/run-pass/import2.rs index 34f67340a28f..37c11b81b4aa 100644 --- a/src/test/run-pass/import2.rs +++ b/src/test/run-pass/import2.rs @@ -14,8 +14,7 @@ use zed::bar; mod zed { - #[legacy_exports]; - fn bar() { debug!("bar"); } + pub fn bar() { debug!("bar"); } } fn main() { bar(); } diff --git a/src/test/run-pass/import3.rs b/src/test/run-pass/import3.rs index b3545d9ec8c8..757034d4b414 100644 --- a/src/test/run-pass/import3.rs +++ b/src/test/run-pass/import3.rs @@ -15,10 +15,8 @@ use baz::zed; use zed::bar; mod baz { - #[legacy_exports]; - mod zed { - #[legacy_exports]; - fn bar() { debug!("bar2"); } + pub mod zed { + pub fn bar() { debug!("bar2"); } } } diff --git a/src/test/run-pass/import4.rs b/src/test/run-pass/import4.rs index 9941648c4f03..4ea180a1e257 100644 --- a/src/test/run-pass/import4.rs +++ b/src/test/run-pass/import4.rs @@ -14,8 +14,7 @@ use zed::bar; mod zed { - #[legacy_exports]; - fn bar() { debug!("bar"); } + pub fn bar() { debug!("bar"); } } fn main() { let zed = 42; bar(); } diff --git a/src/test/run-pass/import5.rs b/src/test/run-pass/import5.rs index 554aa4154b30..ab94fea09719 100644 --- a/src/test/run-pass/import5.rs +++ b/src/test/run-pass/import5.rs @@ -12,13 +12,9 @@ use foo::bar; mod foo { - #[legacy_exports]; - use foo::zed::bar; - export bar; - export zed; - mod zed { - #[legacy_exports]; - fn bar() { debug!("foo"); } + pub use foo::zed::bar; + pub mod zed { + pub fn bar() { debug!("foo"); } } } diff --git a/src/test/run-pass/import6.rs b/src/test/run-pass/import6.rs index 5ffbc0895bd2..2a789969bcbb 100644 --- a/src/test/run-pass/import6.rs +++ b/src/test/run-pass/import6.rs @@ -13,15 +13,11 @@ use foo::zed; use bar::baz; mod foo { - #[legacy_exports]; - mod zed { - #[legacy_exports]; - fn baz() { debug!("baz"); } + pub mod zed { + pub fn baz() { debug!("baz"); } } } mod bar { - #[legacy_exports]; - use zed::baz; - export baz; + pub use zed::baz; } fn main() { baz(); } diff --git a/src/test/run-pass/import7.rs b/src/test/run-pass/import7.rs index 579a1e093cee..91b0943a8338 100644 --- a/src/test/run-pass/import7.rs +++ b/src/test/run-pass/import7.rs @@ -13,20 +13,14 @@ use foo::zed; use bar::baz; mod foo { - #[legacy_exports]; - mod zed { - #[legacy_exports]; - fn baz() { debug!("baz"); } + pub mod zed { + pub fn baz() { debug!("baz"); } } } mod bar { - #[legacy_exports]; - use zed::baz; - export baz; - mod foo { - #[legacy_exports]; - mod zed { - #[legacy_exports]; } + pub use zed::baz; + pub mod foo { + pub mod zed {} } } fn main() { baz(); } diff --git a/src/test/run-pass/import8.rs b/src/test/run-pass/import8.rs index d05e88a2b8d6..4572f59aeea2 100644 --- a/src/test/run-pass/import8.rs +++ b/src/test/run-pass/import8.rs @@ -15,8 +15,7 @@ use foo::x; use z = foo::x; mod foo { - #[legacy_exports]; - fn x(y: int) { log(debug, y); } + pub fn x(y: int) { log(debug, y); } } fn main() { x(10); z(10); } diff --git a/src/test/run-pass/inner-module.rs b/src/test/run-pass/inner-module.rs index 359d16ef1b2f..1754eddb2cab 100644 --- a/src/test/run-pass/inner-module.rs +++ b/src/test/run-pass/inner-module.rs @@ -13,12 +13,10 @@ // -*- rust -*- mod inner { - #[legacy_exports]; - mod inner2 { - #[legacy_exports]; - fn hello() { debug!("hello, modular world"); } + pub mod inner2 { + pub fn hello() { debug!("hello, modular world"); } } - fn hello() { inner2::hello(); } + pub fn hello() { inner2::hello(); } } fn main() { inner::hello(); inner::inner2::hello(); } diff --git a/src/test/run-pass/intrinsic-alignment.rs b/src/test/run-pass/intrinsic-alignment.rs index edc5f2ddbc96..9bd33df6b173 100644 --- a/src/test/run-pass/intrinsic-alignment.rs +++ b/src/test/run-pass/intrinsic-alignment.rs @@ -12,9 +12,8 @@ #[abi = "rust-intrinsic"] extern mod rusti { - #[legacy_exports]; - fn pref_align_of() -> uint; - fn min_align_of() -> uint; + pub fn pref_align_of() -> uint; + pub fn min_align_of() -> uint; } #[cfg(target_os = "linux")] diff --git a/src/test/run-pass/intrinsic-atomics.rs b/src/test/run-pass/intrinsic-atomics.rs index fa8582528251..bee9e1dd1dda 100644 --- a/src/test/run-pass/intrinsic-atomics.rs +++ b/src/test/run-pass/intrinsic-atomics.rs @@ -10,22 +10,21 @@ #[abi = "rust-intrinsic"] extern mod rusti { - #[legacy_exports]; - fn atomic_cxchg(dst: &mut int, old: int, src: int) -> int; - fn atomic_cxchg_acq(dst: &mut int, old: int, src: int) -> int; - fn atomic_cxchg_rel(dst: &mut int, old: int, src: int) -> int; + pub fn atomic_cxchg(dst: &mut int, old: int, src: int) -> int; + pub fn atomic_cxchg_acq(dst: &mut int, old: int, src: int) -> int; + pub fn atomic_cxchg_rel(dst: &mut int, old: int, src: int) -> int; - fn atomic_xchg(dst: &mut int, src: int) -> int; - fn atomic_xchg_acq(dst: &mut int, src: int) -> int; - fn atomic_xchg_rel(dst: &mut int, src: int) -> int; + pub fn atomic_xchg(dst: &mut int, src: int) -> int; + pub fn atomic_xchg_acq(dst: &mut int, src: int) -> int; + pub fn atomic_xchg_rel(dst: &mut int, src: int) -> int; - fn atomic_xadd(dst: &mut int, src: int) -> int; - fn atomic_xadd_acq(dst: &mut int, src: int) -> int; - fn atomic_xadd_rel(dst: &mut int, src: int) -> int; + pub fn atomic_xadd(dst: &mut int, src: int) -> int; + pub fn atomic_xadd_acq(dst: &mut int, src: int) -> int; + pub fn atomic_xadd_rel(dst: &mut int, src: int) -> int; - fn atomic_xsub(dst: &mut int, src: int) -> int; - fn atomic_xsub_acq(dst: &mut int, src: int) -> int; - fn atomic_xsub_rel(dst: &mut int, src: int) -> int; + pub fn atomic_xsub(dst: &mut int, src: int) -> int; + pub fn atomic_xsub_acq(dst: &mut int, src: int) -> int; + pub fn atomic_xsub_rel(dst: &mut int, src: int) -> int; } fn main() { diff --git a/src/test/run-pass/intrinsic-frame-address.rs b/src/test/run-pass/intrinsic-frame-address.rs index 40af377ba911..603f3d7dc818 100644 --- a/src/test/run-pass/intrinsic-frame-address.rs +++ b/src/test/run-pass/intrinsic-frame-address.rs @@ -12,8 +12,7 @@ #[legacy_modes]; #[abi = "rust-intrinsic"] extern mod rusti { - #[legacy_exports]; - fn frame_address(f: &once fn(*u8)); + pub fn frame_address(f: &once fn(*u8)); } fn main() { diff --git a/src/test/run-pass/issue-1251.rs b/src/test/run-pass/issue-1251.rs index 3f54aa6e4054..bc330902b760 100644 --- a/src/test/run-pass/issue-1251.rs +++ b/src/test/run-pass/issue-1251.rs @@ -11,8 +11,7 @@ #[link(name = "get_task_id")]; extern mod rustrt { - #[legacy_exports]; - fn get_task_id() -> libc::intptr_t; + pub fn get_task_id() -> libc::intptr_t; } fn main() { } diff --git a/src/test/run-pass/issue-1866.rs b/src/test/run-pass/issue-1866.rs index d4a3cb1c64da..72fc38e9a0f8 100644 --- a/src/test/run-pass/issue-1866.rs +++ b/src/test/run-pass/issue-1866.rs @@ -10,20 +10,16 @@ // xfail-test mod a { - #[legacy_exports]; - type rust_task = uint; - extern mod rustrt { - #[legacy_exports]; - fn rust_task_is_unwinding(rt: *rust_task) -> bool; + pub type rust_task = uint; + pub extern mod rustrt { + pub fn rust_task_is_unwinding(rt: *rust_task) -> bool; } } mod b { - #[legacy_exports]; - type rust_task = bool; - extern mod rustrt { - #[legacy_exports]; - fn rust_task_is_unwinding(rt: *rust_task) -> bool; + pub type rust_task = bool; + pub extern mod rustrt { + pub fn rust_task_is_unwinding(rt: *rust_task) -> bool; } } diff --git a/src/test/run-pass/issue-2904.rs b/src/test/run-pass/issue-2904.rs index 5e66d2c7c190..482d2665b2bd 100644 --- a/src/test/run-pass/issue-2904.rs +++ b/src/test/run-pass/issue-2904.rs @@ -75,14 +75,13 @@ fn read_board_grid(+in: rdr) -> ~[~[square]] { } mod test { - #[legacy_exports]; #[test] - fn trivial_to_str() { + pub fn trivial_to_str() { assert lambda.to_str() == "\\" } #[test] - fn read_simple_board() { + pub fn read_simple_board() { let s = include_str!("./maps/contest1.map"); io::with_str_reader(s, read_board_grid) } diff --git a/src/test/run-pass/item-attributes.rs b/src/test/run-pass/item-attributes.rs index 407735d1072b..d949516a257a 100644 --- a/src/test/run-pass/item-attributes.rs +++ b/src/test/run-pass/item-attributes.rs @@ -25,49 +25,40 @@ // These are are attributes of the following mod #[attr1 = "val"] #[attr2 = "val"] -mod test_first_item_in_file_mod { - #[legacy_exports]; } +mod test_first_item_in_file_mod {} mod test_single_attr_outer { - #[legacy_exports]; + #[attr = "val"] + pub const x: int = 10; #[attr = "val"] - const x: int = 10; + pub fn f() { } #[attr = "val"] - fn f() { } - - #[attr = "val"] - mod mod1 { - #[legacy_exports]; } + pub mod mod1 {} #[attr = "val"] #[abi = "cdecl"] - extern mod rustrt { - #[legacy_exports]; } + pub extern mod rustrt {} } mod test_multi_attr_outer { - #[legacy_exports]; + #[attr1 = "val"] + #[attr2 = "val"] + pub const x: int = 10; #[attr1 = "val"] #[attr2 = "val"] - const x: int = 10; + pub fn f() { } #[attr1 = "val"] #[attr2 = "val"] - fn f() { } - - #[attr1 = "val"] - #[attr2 = "val"] - mod mod1 { - #[legacy_exports]; } + pub mod mod1 {} #[attr1 = "val"] #[attr2 = "val"] #[abi = "cdecl"] - extern mod rustrt { - #[legacy_exports]; } + pub extern mod rustrt {} #[attr1 = "val"] #[attr2 = "val"] @@ -75,10 +66,7 @@ mod test_multi_attr_outer { } mod test_stmt_single_attr_outer { - #[legacy_exports]; - - fn f() { - + pub fn f() { #[attr = "val"] const x: int = 10; @@ -87,21 +75,17 @@ mod test_stmt_single_attr_outer { #[attr = "val"] mod mod1 { - #[legacy_exports]; } #[attr = "val"] #[abi = "cdecl"] extern mod rustrt { - #[legacy_exports]; } } } mod test_stmt_multi_attr_outer { - #[legacy_exports]; - - fn f() { + pub fn f() { #[attr1 = "val"] #[attr2 = "val"] @@ -115,34 +99,26 @@ mod test_stmt_multi_attr_outer { #[attr1 = "val"] #[attr2 = "val"] mod mod1 { - #[legacy_exports]; } #[attr1 = "val"] #[attr2 = "val"] #[abi = "cdecl"] extern mod rustrt { - #[legacy_exports]; } */ } } mod test_attr_inner { - #[legacy_exports]; - - mod m { - #[legacy_exports]; + pub mod m { // This is an attribute of mod m #[attr = "val"]; } } mod test_attr_inner_then_outer { - #[legacy_exports]; - - mod m { - #[legacy_exports]; + pub mod m { // This is an attribute of mod m #[attr = "val"]; // This is an attribute of fn f @@ -152,9 +128,7 @@ mod test_attr_inner_then_outer { } mod test_attr_inner_then_outer_multi { - #[legacy_exports]; - mod m { - #[legacy_exports]; + pub mod m { // This is an attribute of mod m #[attr1 = "val"]; #[attr2 = "val"]; @@ -166,11 +140,9 @@ mod test_attr_inner_then_outer_multi { } mod test_distinguish_syntax_ext { - #[legacy_exports]; - extern mod std; - fn f() { + pub fn f() { fmt!("test%s", ~"s"); #[attr = "val"] fn g() { } @@ -178,19 +150,16 @@ mod test_distinguish_syntax_ext { } mod test_other_forms { - #[legacy_exports]; #[attr] #[attr(word)] #[attr(attr(word))] #[attr(key1 = "val", key2 = "val", attr)] - fn f() { } + pub fn f() { } } mod test_foreign_items { - #[legacy_exports]; #[abi = "cdecl"] - extern mod rustrt { - #[legacy_exports]; + pub extern mod rustrt { #[attr]; #[attr] @@ -199,7 +168,6 @@ mod test_foreign_items { } mod test_literals { - #[legacy_exports]; #[str = "s"]; #[char = 'c']; #[int = 100]; @@ -209,8 +177,7 @@ mod test_literals { #[mach_float = 1.0f32]; #[nil = ()]; #[bool = true]; - mod m { - #[legacy_exports]; } + mod m {} } fn test_fn_inner() { diff --git a/src/test/run-pass/item-name-overload.rs b/src/test/run-pass/item-name-overload.rs index a5e1bc322d10..fd3ba938b1c2 100644 --- a/src/test/run-pass/item-name-overload.rs +++ b/src/test/run-pass/item-name-overload.rs @@ -13,13 +13,11 @@ // -*- rust -*- mod foo { - #[legacy_exports]; - fn baz() { } + pub fn baz() { } } mod bar { - #[legacy_exports]; - fn baz() { } + pub fn baz() { } } fn main() { } diff --git a/src/test/run-pass/keyword-changes-2012-07-31.rs b/src/test/run-pass/keyword-changes-2012-07-31.rs index 846550117b46..7a8c3cdaa399 100644 --- a/src/test/run-pass/keyword-changes-2012-07-31.rs +++ b/src/test/run-pass/keyword-changes-2012-07-31.rs @@ -16,11 +16,10 @@ fn main() { } mod foo { - #[legacy_exports]; } fn bar() -> int { match 0 { _ => { 0 } } -} \ No newline at end of file +} diff --git a/src/test/run-pass/mod-inside-fn.rs b/src/test/run-pass/mod-inside-fn.rs index 210ae2c94c46..79b431732281 100644 --- a/src/test/run-pass/mod-inside-fn.rs +++ b/src/test/run-pass/mod-inside-fn.rs @@ -10,8 +10,7 @@ fn f() -> int { mod m { - #[legacy_exports]; - fn g() -> int { 720 } + pub fn g() -> int { 720 } } m::g() @@ -19,4 +18,4 @@ fn f() -> int { fn main() { assert f() == 720; -} \ No newline at end of file +} diff --git a/src/test/run-pass/mod-view-items.rs b/src/test/run-pass/mod-view-items.rs index dd5f7484f103..fdb1d01727a9 100644 --- a/src/test/run-pass/mod-view-items.rs +++ b/src/test/run-pass/mod-view-items.rs @@ -17,9 +17,8 @@ // begin failing. mod m { - #[legacy_exports]; use core::vec; - fn f() -> ~[int] { vec::from_elem(1u, 0) } + pub fn f() -> ~[int] { vec::from_elem(1u, 0) } } fn main() { let x = m::f(); } diff --git a/src/test/run-pass/morestack-address.rs b/src/test/run-pass/morestack-address.rs index 6143f1d34105..609d7d570117 100644 --- a/src/test/run-pass/morestack-address.rs +++ b/src/test/run-pass/morestack-address.rs @@ -11,8 +11,7 @@ #[nolink] #[abi = "rust-intrinsic"] extern mod rusti { - #[legacy_exports]; - fn morestack_addr() -> *(); + pub fn morestack_addr() -> *(); } fn main() { diff --git a/src/test/run-pass/morestack6.rs b/src/test/run-pass/morestack6.rs index a520719562dc..352fe3e129de 100644 --- a/src/test/run-pass/morestack6.rs +++ b/src/test/run-pass/morestack6.rs @@ -12,15 +12,14 @@ // external symbols as close to the red zone as possible. extern mod rustrt { - #[legacy_exports]; - fn debug_get_stk_seg() -> *u8; + pub fn debug_get_stk_seg() -> *u8; - fn rust_get_sched_id() -> libc::intptr_t; - fn last_os_error() -> ~str; - fn rust_getcwd() -> ~str; - fn get_task_id() -> libc::intptr_t; - fn rust_sched_threads(); - fn rust_get_task(); + pub fn rust_get_sched_id() -> libc::intptr_t; + pub fn last_os_error() -> ~str; + pub fn rust_getcwd() -> ~str; + pub fn get_task_id() -> libc::intptr_t; + pub fn rust_sched_threads(); + pub fn rust_get_task(); } fn calllink01() { unsafe { rustrt::rust_get_sched_id(); } } diff --git a/src/test/run-pass/nil-decl-in-foreign.rs b/src/test/run-pass/nil-decl-in-foreign.rs index 23ef5f7f5d3b..40f4b2339e55 100644 --- a/src/test/run-pass/nil-decl-in-foreign.rs +++ b/src/test/run-pass/nil-decl-in-foreign.rs @@ -11,7 +11,6 @@ // Issue #901 #[nolink] extern mod libc { - #[legacy_exports]; - fn printf(x: ()); + pub fn printf(x: ()); } -fn main() { } \ No newline at end of file +fn main() { } diff --git a/src/test/run-pass/path.rs b/src/test/run-pass/path.rs index f659143189fb..9f600e106b3e 100644 --- a/src/test/run-pass/path.rs +++ b/src/test/run-pass/path.rs @@ -11,8 +11,7 @@ mod foo { - #[legacy_exports]; - fn bar(offset: uint) { } + pub fn bar(offset: uint) { } } fn main() { foo::bar(0u); } diff --git a/src/test/run-pass/rec-align-u32.rs b/src/test/run-pass/rec-align-u32.rs index 11e2f79aa608..15538648363e 100644 --- a/src/test/run-pass/rec-align-u32.rs +++ b/src/test/run-pass/rec-align-u32.rs @@ -12,9 +12,8 @@ #[abi = "rust-intrinsic"] extern mod rusti { - #[legacy_exports]; - fn pref_align_of() -> uint; - fn min_align_of() -> uint; + pub fn pref_align_of() -> uint; + pub fn min_align_of() -> uint; } // This is the type with the questionable alignment @@ -32,16 +31,14 @@ struct Outer { #[cfg(target_arch = "x86")] mod m { - #[legacy_exports]; - fn align() -> uint { 4u } - fn size() -> uint { 8u } + pub fn align() -> uint { 4u } + pub fn size() -> uint { 8u } } #[cfg(target_arch = "x86_64")] mod m { - #[legacy_exports]; - fn align() -> uint { 4u } - fn size() -> uint { 8u } + pub fn align() -> uint { 4u } + pub fn size() -> uint { 8u } } fn main() { diff --git a/src/test/run-pass/rec-align-u64.rs b/src/test/run-pass/rec-align-u64.rs index 5fdabdc360cd..30978deb3746 100644 --- a/src/test/run-pass/rec-align-u64.rs +++ b/src/test/run-pass/rec-align-u64.rs @@ -12,9 +12,8 @@ #[abi = "rust-intrinsic"] extern mod rusti { - #[legacy_exports]; - fn pref_align_of() -> uint; - fn min_align_of() -> uint; + pub fn pref_align_of() -> uint; + pub fn min_align_of() -> uint; } // This is the type with the questionable alignment @@ -34,30 +33,25 @@ struct Outer { #[cfg(target_os = "macos")] #[cfg(target_os = "freebsd")] mod m { - #[legacy_exports]; #[cfg(target_arch = "x86")] - mod m { - #[legacy_exports]; - fn align() -> uint { 4u } - fn size() -> uint { 12u } + pub mod m { + pub fn align() -> uint { 4u } + pub fn size() -> uint { 12u } } #[cfg(target_arch = "x86_64")] mod m { - #[legacy_exports]; - fn align() -> uint { 8u } - fn size() -> uint { 16u } + pub fn align() -> uint { 8u } + pub fn size() -> uint { 16u } } } #[cfg(target_os = "win32")] mod m { - #[legacy_exports]; #[cfg(target_arch = "x86")] - mod m { - #[legacy_exports]; - fn align() -> uint { 8u } - fn size() -> uint { 16u } + pub mod m { + pub fn align() -> uint { 8u } + pub fn size() -> uint { 16u } } } diff --git a/src/test/run-pass/rt-sched-1.rs b/src/test/run-pass/rt-sched-1.rs index 95fbf4c9ef01..6922156f5ef9 100644 --- a/src/test/run-pass/rt-sched-1.rs +++ b/src/test/run-pass/rt-sched-1.rs @@ -19,11 +19,10 @@ type task = *libc::c_void; type closure = *libc::c_void; extern mod rustrt { - #[legacy_exports]; - fn rust_new_sched(num_threads: libc::uintptr_t) -> sched_id; - fn rust_get_sched_id() -> sched_id; - fn rust_new_task_in_sched(id: sched_id) -> task_id; - fn start_task(id: task_id, f: closure); + pub fn rust_new_sched(num_threads: libc::uintptr_t) -> sched_id; + pub fn rust_get_sched_id() -> sched_id; + pub fn rust_new_task_in_sched(id: sched_id) -> task_id; + pub fn start_task(id: task_id, f: closure); } fn main() { diff --git a/src/test/run-pass/self-shadowing-import.rs b/src/test/run-pass/self-shadowing-import.rs index 86e6b7f0f50f..22562d65e375 100644 --- a/src/test/run-pass/self-shadowing-import.rs +++ b/src/test/run-pass/self-shadowing-import.rs @@ -11,20 +11,16 @@ // except according to those terms. mod a { - #[legacy_exports]; - mod b { - #[legacy_exports]; - mod a { - #[legacy_exports]; - fn foo() -> int { return 1; } + pub mod b { + pub mod a { + pub fn foo() -> int { return 1; } } } } mod c { - #[legacy_exports]; use a::b::a; - fn bar() { assert (a::foo() == 1); } + pub fn bar() { assert (a::foo() == 1); } } fn main() { c::bar(); } diff --git a/src/test/run-pass/static-method-xcrate.rs b/src/test/run-pass/static-method-xcrate.rs index d19398456b6d..ca42742a576c 100644 --- a/src/test/run-pass/static-method-xcrate.rs +++ b/src/test/run-pass/static-method-xcrate.rs @@ -10,7 +10,6 @@ // xfail-fast // aux-build:static-methods-crate.rs -#[legacy_exports]; extern mod static_methods_crate; use static_methods_crate::read; diff --git a/src/test/run-pass/struct-return.rs b/src/test/run-pass/struct-return.rs index e09150eac767..078551815016 100644 --- a/src/test/run-pass/struct-return.rs +++ b/src/test/run-pass/struct-return.rs @@ -13,9 +13,8 @@ struct Floats { a: f64, b: u8, c: f64 } #[nolink] extern mod rustrt { - #[legacy_exports]; - fn debug_abi_1(++q: Quad) -> Quad; - fn debug_abi_2(++f: Floats) -> Floats; + pub fn debug_abi_1(++q: Quad) -> Quad; + pub fn debug_abi_2(++f: Floats) -> Floats; } fn test1() { diff --git a/src/test/run-pass/syntax-extension-source-utils.rs b/src/test/run-pass/syntax-extension-source-utils.rs index 413edcdb13a9..af1b20eb49da 100644 --- a/src/test/run-pass/syntax-extension-source-utils.rs +++ b/src/test/run-pass/syntax-extension-source-utils.rs @@ -10,18 +10,15 @@ // This test is brittle! // xfail-pretty - the pretty tests lose path information, breaking include! -#[legacy_exports]; -mod m1 { - #[legacy_exports]; - mod m2 { - #[legacy_exports]; - fn where_am_i() -> ~str { (module_path!()).to_owned() } +pub mod m1 { + pub mod m2 { + pub fn where_am_i() -> ~str { (module_path!()).to_owned() } } } fn main() { - assert(line!() == 24); + assert(line!() == 21); assert(col!() == 11); assert(file!().to_owned().ends_with(~"syntax-extension-source-utils.rs")); assert(stringify!((2*3) + 5).to_owned() == ~"( 2 * 3 ) + 5"); diff --git a/src/test/run-pass/tag-exports.rs b/src/test/run-pass/tag-exports.rs index ff4f5bfe62fb..124afc4364fd 100644 --- a/src/test/run-pass/tag-exports.rs +++ b/src/test/run-pass/tag-exports.rs @@ -13,21 +13,10 @@ use alder::*; mod alder { - #[legacy_exports]; - export burnside; - export couch; - export everett; - export flanders; - export irving; - export johnson; - export kearney; - export marshall; - - enum burnside { couch, davis } - enum everett { flanders, glisan, hoyt } - enum irving { johnson, kearney, lovejoy } - enum marshall { northrup, overton } - + pub enum burnside { couch, davis } + pub enum everett { flanders, glisan, hoyt } + pub enum irving { johnson, kearney, lovejoy } + pub enum marshall { northrup, overton } } fn main() { diff --git a/src/test/run-pass/type-in-nested-module.rs b/src/test/run-pass/type-in-nested-module.rs index 32275398ba56..bb7b9aa46eb3 100644 --- a/src/test/run-pass/type-in-nested-module.rs +++ b/src/test/run-pass/type-in-nested-module.rs @@ -11,12 +11,10 @@ mod a { - #[legacy_exports]; - mod b { - #[legacy_exports]; - type t = int; + pub mod b { + pub type t = int; - fn foo() { let x: t = 10; } + pub fn foo() { let x: t = 10; } } } diff --git a/src/test/run-pass/use-import-export.rs b/src/test/run-pass/use-import-export.rs index e273fcb3235e..70c21c6ac4f2 100644 --- a/src/test/run-pass/use-import-export.rs +++ b/src/test/run-pass/use-import-export.rs @@ -11,13 +11,11 @@ mod foo { - #[legacy_exports]; - fn x() -> int { return 1; } + pub fn x() -> int { return 1; } } mod bar { - #[legacy_exports]; - fn y() -> int { return 1; } + pub fn y() -> int { return 1; } } fn main() { foo::x(); bar::y(); } diff --git a/src/test/run-pass/use-mod.rs b/src/test/run-pass/use-mod.rs index dc09d6b44487..bd273e64b1a0 100644 --- a/src/test/run-pass/use-mod.rs +++ b/src/test/run-pass/use-mod.rs @@ -13,10 +13,8 @@ use mod a::b; mod a { - #[legacy_exports]; - mod b { - #[legacy_exports]; - fn f() {} + pub mod b { + pub fn f() {} } } diff --git a/src/test/run-pass/use.rs b/src/test/run-pass/use.rs index 0afac13303d8..5f57e1c1475d 100644 --- a/src/test/run-pass/use.rs +++ b/src/test/run-pass/use.rs @@ -19,9 +19,8 @@ extern mod bar(name = "core", vers = "0.6"); use core::str; use x = zed::str; mod baz { - #[legacy_exports]; - use bar::str; - use x = core::str; + pub use bar::str; + pub use x = core::str; } fn main() { } diff --git a/src/test/run-pass/warn-ctypes-inhibit.rs b/src/test/run-pass/warn-ctypes-inhibit.rs index 6018f802b761..91617fb1c6d7 100644 --- a/src/test/run-pass/warn-ctypes-inhibit.rs +++ b/src/test/run-pass/warn-ctypes-inhibit.rs @@ -14,9 +14,8 @@ #[nolink] extern mod libc { - #[legacy_exports]; - fn malloc(size: int) -> *u8; + pub fn malloc(size: int) -> *u8; } fn main() { -} \ No newline at end of file +} diff --git a/src/test/run-pass/x86stdcall2.rs b/src/test/run-pass/x86stdcall2.rs index 31cf62334307..88d5d659169b 100644 --- a/src/test/run-pass/x86stdcall2.rs +++ b/src/test/run-pass/x86stdcall2.rs @@ -17,10 +17,10 @@ type BOOL = u8; #[cfg(target_os = "win32")] #[abi = "stdcall"] extern mod kernel32 { - #[legacy_exports]; - fn GetProcessHeap() -> HANDLE; - fn HeapAlloc(hHeap: HANDLE, dwFlags: DWORD, dwBytes: SIZE_T) -> LPVOID; - fn HeapFree(hHeap: HANDLE, dwFlags: DWORD, lpMem: LPVOID) -> BOOL; + pub fn GetProcessHeap() -> HANDLE; + pub fn HeapAlloc(hHeap: HANDLE, dwFlags: DWORD, dwBytes: SIZE_T) + -> LPVOID; + pub fn HeapFree(hHeap: HANDLE, dwFlags: DWORD, lpMem: LPVOID) -> BOOL; }