Files
kotlin-fork/j2k/testData/fileOrElement/constructors/fieldsInitializedFromParams1.java
T
Alexander Udalov 3c859caf2b j2k: flatten test cases and testData directory structure
Move j2k/test/tests -> j2k/tests, j2k/test/testData -> j2k/testData
2015-01-03 00:52:59 +03:00

12 lines
194 B
Java
Vendored

class C {
private final int p1;
private final int myP2;
public int p3;
public C(int p1, int p2, int p3) {
this.p1 = p1;
myP2 = p2;
this.p3 = p3;
}
}