Skip to content

Instantly share code, notes, and snippets.

@adam-arold
Created October 8, 2017 16:43
Show Gist options
  • Save adam-arold/2dc709969c3267b247e8536c8442d752 to your computer and use it in GitHub Desktop.
Save adam-arold/2dc709969c3267b247e8536c8442d752 to your computer and use it in GitHub Desktop.
class Foo {
private val c: String
init {
bar()
c = ""
}
private fun bar() {
println(c.length)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment