Files
openide/java/java-tests/testData/codeInsight/completion/normal/DotInsideConstructor.java
T
2025-11-03 19:05:05 +00:00

10 lines
125 B
Java

package org.example;
public class Person {
private String a;
public Person(String a).Pe<caret> {
this.a = a;
}
}