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

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