Files
kotlin-fork/idea/testData/checker/regression/ClassDeclarationAsExpression3.kt
T
2020-02-10 10:54:03 +03:00

7 lines
244 B
Kotlin
Vendored

fun f(<warning descr="[UNUSED_PARAMETER] Parameter 'i' is never used">i</warning>: Int = 3 < <error descr="[DECLARATION_IN_ILLEGAL_CONTEXT] Declarations are not allowed in this position">class A {
fun f() {
f()
}
}</error>) {
}