error[E0583]: file not found for module `classes`
--> input/code.rs:13:1
|
13 | mod classes;
| ^^^^^^^^^^^^
|
= help: to create the module `classes`, create file "input/classes.rs" or "input/classes/mod.rs"
= note: if there is a `mod classes` elsewhere in the crate already, import it with `use crate::...` instead
error[E0433]: failed to resolve: could not find `c02` in `classes`
--> input/code.rs:16:14
|
16 | classes::c02::task2();
| ^^^ could not find `c02` in `classes`
warning: unused import: `std::cmp::min`
--> input/code.rs:1:5
|
1 | use std::cmp::min;
| ^^^^^^^^^^^^^
|
= note: `#[warn(unused_imports)]` on by default
warning: unused imports: `Read`, `self`
--> input/code.rs:2:15
|
2 | use std::io::{self, Read};
| ^^^^ ^^^^
warning: unused macro definition: `input`
--> input/code.rs:4:14
|
4 | macro_rules! input {
| ^^^^^
|
= note: `#[warn(unused_macros)]` on by default
error: abort...