jkwatson
fun main(args: Array<String>) { println(Bug().foo) } public class Bug { val foo: String = initFoo() fun initFoo(): String { return oops } val oops = "Uh oh” }