1pub trait Shape { 2 const HEIGHT: usize; 3 4 const WIDTH: usize; 5} 6 7#[cfg(test)] 8 9mod tests { 10 11 #[test] 12 13 fn test() {} 14}