blob: 545fd95c016ab95f996a92533252612e2de6d776 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// generics1.rs
//
// This shopping list program isn't compiling! Use your knowledge of generics to
// fix it.
//
// Execute `rustlings hint generics1` or use the `hint` watch subcommand for a
// hint.
fn main() {
let mut shopping_list: Vec<?> = Vec::new();
shopping_list.push("milk");
}
|