// !CHECK_TYPE import kotlin.reflect.* fun main() { fun foo() {} fun bar(x: Int) {} fun baz() = "OK" class A { val x = ::foo val y = ::bar val z = ::baz fun main() { checkSubtype>(x) checkSubtype>(y) checkSubtype>(z) } } }