Files
kotlin-fork/nj2k/testData/newJ2k/mutableCollections/mutableListInOtherClass.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

12 lines
222 B
Java
Vendored

import java.util.ArrayList;
import java.util.List;
public class Owner {
public List<String> list = new ArrayList<>();
}
public class Updater {
public void update(Owner owner) {
owner.list.add("");
}
}