summaryrefslogtreecommitdiff
path: root/exercises/generics/generics1.rs
blob: 967287ef5f7cea3ecd894c9cc1f45d63e76f8a52 (plain)
1
2
3
4
5
6
7
8
9
// This shopping list program isn't compiling!
// Use your knowledge of generics to fix it.

// I AM NOT DONE

fn main() {
    let mut shopping_list: Vec<?> = Vec::new();
    shopping_list.push("milk");
}