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
|
|
}
|
|
}
|