aboutsummaryrefslogblamecommitdiff
path: root/tests/pos-java-interop/t1642/JavaCallingScalaHashMap.java
blob: 976e465ff7c4d15ed3d061b17d52eedb1d3a3d58 (plain) (tree)
1
2
3
4
5
6
7
8







                                                                      
import scala.collection.immutable.HashMap;
import scala.collection.immutable.Map;

public class JavaCallingScalaHashMap {
    public static void main( String[] args ) {
        Map<String, Integer> hashMap = new HashMap<String, Integer>();
    }
}