Files
Alexander Udalov ebb9659e03 Add mode to run kapt with JVM IR, use in tests
Currently JVM IR is not supported in kapt, so almost all tests are
failing, and thus are muted with IGNORE_BACKEND.

 #KT-49682
2022-02-08 20:15:13 +01:00

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)
}