[fixes #3370] Support Helper in method

This commit is contained in:
Rawi01
2023-05-05 22:48:19 +02:00
parent 250bc0660b
commit 37ac1bf4cd
9 changed files with 55 additions and 4 deletions
@@ -0,0 +1,16 @@
import lombok.experimental.Helper;
public class HelperInMethod {
int someMethod(int arg1) {
int localVar = 5;
@Helper
class Helpers {
int helperMethod(int arg) {
return arg + localVar;
}
}
return helperMethod(10);
}
}