Skip to content

Instantly share code, notes, and snippets.

@erokhins
Created October 3, 2013 21:29
Show Gist options
  • Save erokhins/6817431 to your computer and use it in GitHub Desktop.
Save erokhins/6817431 to your computer and use it in GitHub Desktop.
open class A {
open val bar: Int
{
bar = 3
println(bar)
}
}
class B : A() {
override val bar = 4
}
fun main(args : Array<String>) {
B()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment