[FIR] Add opt-in annotation which prevents from using symbol.fir

This commit is contained in:
Dmitriy Novozhilov
2021-07-07 17:51:01 +03:00
committed by teamcityserver
parent c99a02796f
commit e94d75d433
5 changed files with 45 additions and 1 deletions
@@ -14,3 +14,9 @@ sourceSets {
"main" { projectDefault() }
"test" { }
}
tasks.withType<org.jetbrains.kotlin.gradle.dsl.KotlinCompile<*>> {
kotlinOptions {
freeCompilerArgs += "-Xopt-in=org.jetbrains.kotlin.fir.symbols.SymbolInternals"
}
}