2012-07-06 21:06:58 -05:00
|
|
|
// error-pattern: import
|
2011-05-01 16:22:20 -05:00
|
|
|
|
2012-09-05 14:32:05 -05:00
|
|
|
use m::unexported;
|
2011-05-01 16:22:20 -05:00
|
|
|
|
|
|
|
mod m {
|
2012-09-21 20:10:45 -05:00
|
|
|
#[legacy_exports];
|
2011-07-27 07:19:39 -05:00
|
|
|
export exported;
|
2011-05-01 16:22:20 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn exported() { }
|
2011-05-01 16:22:20 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn unexported() { }
|
2011-05-01 16:22:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-08-19 17:16:48 -05:00
|
|
|
fn main() { unexported(); }
|