Kapt: Call next resolver in populateModuleExtraModels() (KT-30995)

This commit is contained in:
Yan Zhulanow
2019-04-12 21:06:46 +03:00
parent 27fd64ed42
commit 7710942ec5
8 changed files with 35 additions and 10 deletions
@@ -0,0 +1,13 @@
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.3.30'
}
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
testCompile group: 'junit', name: 'junit', version: '4.12'
}
@@ -0,0 +1,3 @@
class Test {
fun test() {}
}