summaryrefslogtreecommitdiffstats
path: root/tests/ui/btreemap/btreemap-index-mut-2.rs
blob: fe676210a1b8133296725139c4bc2a6b70747503 (plain)
1
2
3
4
5
6
7
8
use std::collections::BTreeMap;

fn main() {
    let _ = || {
        let mut map = BTreeMap::<u32, u32>::new();
        map[&0] = 1; //~ ERROR cannot assign
    };
}