1import java.util.*;
2
3class Foo {
4    void bar() {
5        Map m = new HashMap();
6        m.put("a", "b");
7    }
8}