rust/src/test/auxiliary/issue_2316_b.rs

18 lines
181 B
Rust
Raw Normal View History

extern mod issue_2316_a;
mod cloth {
#[legacy_exports];
2012-09-05 14:32:05 -05:00
use issue_2316_a::*;
export calico, gingham, flannel;
export fabric;
enum fabric {
gingham, flannel, calico
}
}