aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs153/pr148409/Blurgh.java
blob: b44c0a9b68318dbefbc5469513cf00d6c44cbea3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
interface SecurityEntity {}
class Goo {}
interface Base {}
interface Hoo<X> { public void m(X x);}

class Foo<B extends Base, C extends B> extends Goo implements Hoo<B> {

  public void m(B b) {
  }
}


interface Interface1 extends Base {}

class Impl1 implements Interface1 {}




public class Blurgh {
  public static void main(String []argv) {
    new Foo<Interface1,Impl1>();
   }
}