Kotlin / kotlin-koans

Kotlin workshop
MIT License
2.6k stars 1.41k forks source link

Task 32 (Resolution) - Redundant setter parameter type #125

Closed augustopedroza closed 6 years ago

augustopedroza commented 6 years ago

var propertyWithCounter: Int? = null set(v : Int?) { field = v counter++ }

svtk commented 6 years ago

Fixed, thanks!