Skip to main content
summaryrefslogtreecommitdiffstats
blob: 343f333ffc04b8d98f8f36f195705ceb32bcd4ae (plain) (blame)
1
2
3
4
5
6
7
8
9
//change type of a to HashSet
package p;

import java.util.HashSet;

class A {
	void m(HashSet a){
	}
}

Back to the top