1
Fork 0

test: De-export aux, bench, compile-fail, and run-fail. rs=deexporting

This commit is contained in:
Patrick Walton 2013-01-30 14:30:22 -08:00
parent 77f2aac389
commit 2a65842c3a
85 changed files with 223 additions and 414 deletions

View file

@ -9,12 +9,11 @@
// except according to those terms.
mod cat {
#[legacy_exports];
struct Cat {
pub struct Cat {
priv meows: uint
}
fn new_cat() -> Cat {
pub fn new_cat() -> Cat {
Cat { meows: 52 }
}
}