Kapt: Add runtime library, move all modules inside the 'kapt3' directory

This commit is contained in:
Yan Zhulanow
2017-11-02 11:15:15 +09:00
parent b74ef72af7
commit fd84ecda54
140 changed files with 110 additions and 58 deletions
@@ -0,0 +1,21 @@
@file:Suppress("AMBIGUOUS_ANONYMOUS_TYPE_INFERRED")
open class CrashMe {
private val notReally = object : Runnable {
override fun run() {
throw UnsupportedOperationException()
}
}
}
fun a() = object : Runnable {
override fun run() {}
}
fun b() = object : java.io.Serializable, Runnable {
override fun run() {}
}
fun c() = object : CrashMe(), Runnable {
override fun run() {}
}