about summary refs log tree commit diff
path: root/src/test/compile-fail/bad-expr-path.rs
diff options
context:
space:
mode:
authorPatrick Walton <pcwalton@mimiga.net>2013-01-30 14:30:22 -0800
committerPatrick Walton <pcwalton@mimiga.net>2013-01-30 15:08:45 -0800
commit2a65842c3ab133d2e0e5f2f333be42f5d7cf6f9e (patch)
tree630db0baa05c767e1b2280b5ea9d9d25fc5bd9e4 /src/test/compile-fail/bad-expr-path.rs
parent77f2aac38936d711dadd0b54ce96b44990c21fd6 (diff)
downloadrust-2a65842c3ab133d2e0e5f2f333be42f5d7cf6f9e.tar.gz
rust-2a65842c3ab133d2e0e5f2f333be42f5d7cf6f9e.zip
test: De-export aux, bench, compile-fail, and run-fail. rs=deexporting
Diffstat (limited to 'src/test/compile-fail/bad-expr-path.rs')
-rw-r--r--src/test/compile-fail/bad-expr-path.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test/compile-fail/bad-expr-path.rs b/src/test/compile-fail/bad-expr-path.rs
index 7ed6836495c..576f9ef677e 100644
--- a/src/test/compile-fail/bad-expr-path.rs
+++ b/src/test/compile-fail/bad-expr-path.rs
@@ -10,7 +10,6 @@
 
 // error-pattern: unresolved name: m1::a
 
-mod m1 {
-    #[legacy_exports]; }
+mod m1 {}
 
 fn main(args: ~[str]) { log(debug, m1::a); }