blob: 6eb6f0b4aea18c554220b74d3526d0183d0371f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package q;
import p.HasITDs1;
import r.HasITDs2;
public class UsesITDs1 {
void nothing() {
new HasITDs1().x++;
new HasITDs2().x++;
new HasITDs1().nothing(1, 1, 1);
new HasITDs2().nothing(1, 1, 1);
}
}
|