Files
kotlin-fork/compiler/testData/diagnostics/tests/declarationChecks/propertyInPackageHasNoInheritVisibility.kt
T
Svetlana Isakova f8edaad420 make modality 'FINAL' for non-class members
not depend on actual modifier since it's not legal there
2012-08-22 20:42:35 +04:00

7 lines
92 B
Kotlin

package d
<!ILLEGAL_MODIFIER!>override<!> val f : ()-> Int = { 12 }
fun test() {
f()
}