aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/ExtensionMethodNames.java
blob: 45f76ee4245e7611fedc117756bef4db74c58090 (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
package a;

class ExtensionMethodNames {
	
	public void instanceCalls() {
		a.Extensions.ext((new Test()));
		Test t = new Test();
		a.Extensions.ext(t);
		Test Test = new Test();
		a.Extensions.ext(Test);
	}
	
	public void staticCalls() {
		Test.ext();
		a.Test.ext();
	}
}

class Extensions {
	public static void ext(Test t) {
	}
}

class Test {
	public static void ext() {
	}
}