ebb9659e03
Currently JVM IR is not supported in kapt, so almost all tests are failing, and thus are muted with IGNORE_BACKEND. #KT-49682
11 lines
234 B
Kotlin
Vendored
11 lines
234 B
Kotlin
Vendored
class Outer {
|
|
private inner class Inner(val foo: String, val bar: String)
|
|
private class Nested(val foo: String, val bar: String)
|
|
|
|
fun nonAbstract(s: String, i: Int) {
|
|
|
|
}
|
|
|
|
abstract fun abstract(s: String, i: Int)
|
|
}
|