Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c307f1e34404374e2baabb2dc51fb14f4df97620 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package p;
public interface A{
   <T> void a();
   <T> void b();
}

class Z{
   private static final class AImpl implements A {
		public <T> void b(){}
		public <T> void a(){}
	}

void m(){
      A a = new AImpl();
   }
}

Back to the top