blob: 50695ae2a5883bc22b9ec8fb2c8a99022783ac55 [file] [log] [blame]
//file
package demo;
import java.util.HashMap;
class Test {
void main() {
HashMap<String, Integer> commonMap = new HashMap<String, Integer>();
HashMap rawMap = new HashMap<String, Integer>();
HashMap superRawMap = new HashMap();
}
}