Skip to content

Commit

Permalink
Made 4.32 pass.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthorne committed Jul 30, 2018
1 parent 0e21247 commit 316a026
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/iv_properties/n32Properties.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ import util.doc32

class PropertyExample() {
var counter = 0
var propertyWithCounter: Int? = todoTask32()
var propertyWithCounter: Int? = null
set(value) {
++counter
field = value
}
}

fun todoTask32(): Nothing = TODO(
Expand Down

0 comments on commit 316a026

Please sign in to comment.