mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-09 13:33:43 +00:00
12 lines
160 B
Rust
12 lines
160 B
Rust
#![allow(unused_imports)]
|
|
|
|
extern crate issue_2316_a;
|
|
|
|
pub mod cloth {
|
|
use issue_2316_a::*;
|
|
|
|
pub enum fabric {
|
|
gingham, flannel, calico
|
|
}
|
|
}
|