struct SemanticDirection;
fn main() {}
warning: struct is never used: `SemanticDirection`
--> src/main.rs:1:1
|
1 | struct SemanticDirection;
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: #[warn(dead_code)] on by default
Volveré a activar estas advertencias para cualquier cosa grave, pero solo estoy jugando con el lenguaje y esto me está volviendo loco.
Intenté agregar #[allow(dead_code)]
a mi código, pero eso no funcionó.