Files
2023-02-05 14:06:15 +00:00

13 lines
152 B
Java

// "Create field for parameter 'p1'" "true-preview"
enum Test{
A;//comment
private int myP1;
void f(int p1){
myP1 = p1;
}
}