mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 19:21:16 +07:00
14 lines
221 B
Java
14 lines
221 B
Java
// "Create field for parameter 'p1'" "true-preview"
|
|
|
|
class Test{
|
|
int b;
|
|
@org.jetbrains.annotations.NotNull
|
|
private final String myP1;
|
|
|
|
Test(String p1){
|
|
b = p1.length();
|
|
myP1 = p1;
|
|
}
|
|
}
|
|
|