forked from JavaTX/JavaCompilerCore
13 lines
129 B
Plaintext
13 lines
129 B
Plaintext
|
class Box<A> {
|
||
|
A f;
|
||
|
}
|
||
|
class B {
|
||
|
}
|
||
|
|
||
|
class Box_Main extends B {
|
||
|
|
||
|
m(b) {
|
||
|
b.f = new Box_Main();
|
||
|
b.f = new B();
|
||
|
}
|
||
|
}
|