Files
kotlin-fork/nj2k/testData/newJ2k/detectProperties/commentInInitStatement.java
T
Ilya Kirillov f61bb5aa39 New J2K: implement mutability inference in post-processing
#KT-24293 fixed
#KT-19603 fixed
2019-09-10 14:09:26 +03:00

8 lines
175 B
Java
Vendored

public class Nya {
private int i;
public Nya(int i) {
/*comment before*/
this/*1*/./*2*/i/*3*/ = /*4*/i /* comment after*/; // and after again
}
}