Skip to main content
summaryrefslogtreecommitdiffstats
blob: 93ffb84eb704f58aa546c583ec85285bb8ff63e9 (plain) (blame)
1
2
3
4
5
6
7
//cannot change type of i to Fred - no such type exists
package p;
class A{
	int m(int i){
		return 1;
	}
}

Back to the top