blob: 1b27d16c37f8c8c1ce379401c38aa0a0d8eee653 [file] [log] [blame]
class A {
fun test() = 1
}
fun main(args: Array<String>) {
val a = A()
val test = a.test()
val b = test
}