Enable experimental unsigned types

This commit is contained in:
Daniel Wolf 2019-10-04 14:13:26 +02:00
parent 69afa208fb
commit b96de75330
1 changed files with 1 additions and 0 deletions

View File

@ -24,6 +24,7 @@ var distDirectory = File(project.buildDir, distsDirName)
tasks {
withType<KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.freeCompilerArgs += "-Xuse-experimental=kotlin.ExperimentalUnsignedTypes"
}
test {