blob: 598b3f390344c3350ddf660d50a49cd9dd73e1ed [file] [log] [blame]
// "Remove 'val' from parameter" "true"
class UsedInProperty(private <caret>val x: Int) {
var y: String
init {
y = x.toString()
}
}