aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs167/pr296040/ErrorClass.java
blob: 35f7e3cf4398a2e6518b49cc97fb6a8a13ecfe31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import java.util.Set;
import java.util.Map.Entry;

import com.google.common.collect.TreeMultimap;

public class ErrorClass {

    public void useGoogleCollections() {
        TreeMultimap<String, String> countResult = TreeMultimap.create();
        Set<Entry<String, String>> entries = countResult.entries();
        System.out.println(entries.size());
    }

    public static void main(String[] args) {
		new ErrorClass().useGoogleCollections();
	}
}