Skip to main content
summaryrefslogtreecommitdiffstats
blob: 331196ba28c0279c70b8f9340c93f5fbe0a6eeab (plain) (blame)
1
2
3
4
5
6
7
8
9
// Here, an import is added for a type needed only after a qualification is added.
// 8, 19 -> 8, 29  removeAll == false
package p2;

import p1.A;

class InlineSite {
	Object thing= A.ALFRED;	
}

Back to the top