6372c01e49
This is required to correctly resolve overloading in cases when we need to find most specific alternative in Java between int and Integer.
19 lines
346 B
Kotlin
19 lines
346 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation(project(":compiler:fir:cones"))
|
|
implementation(project(":compiler:fir:tree"))
|
|
implementation(project(":compiler:fir:resolve"))
|
|
implementation(project(":compiler:frontend.java"))
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
} |