Example:
private val _items = mutableListOf() val items: List get() = _items
After the quick-fix is applied:
val items: List field = mutableListOf()