Add ClassBuilderMode.KAPT3 tests

This commit is contained in:
Yan Zhulanow
2017-02-17 16:15:02 +03:00
parent e25e19c4d6
commit 7a5f94129c
17 changed files with 290 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
// WITH_RUNTIME
package test
class TopLevel {
companion object {
fun a() {}
@JvmStatic
val q = "A"
}
fun b() {}
val x: String
val y = 5
class NestedClass {
inner class NestedInnerClass
}
object InnerObject
interface InnerInterface
}