ca8e2d4956
Run find usages tests with library for both original and navigation elements. Drop duplicating tests. Simplify test class. TODO: Some usages are not found yet since light methods built from library files do not retain original declarations
15 lines
182 B
Java
Vendored
15 lines
182 B
Java
Vendored
package usages
|
|
|
|
import library.*
|
|
|
|
class J extends A {
|
|
public X(int n) {
|
|
super(n);
|
|
}
|
|
|
|
static void test() {
|
|
A a = new A();
|
|
A aa = new A(1);
|
|
}
|
|
}
|