Files
kotlin-fork/compiler/testData/diagnostics/tests/redeclarations/ScriptAndClassConflict.ll.kts
T
Dmitrii Gridin 2f8026f335 [LL FIR] add missed diagnostic tests for scripts
^KT-62840
^KT-62841
^KT-62861
2023-10-24 19:32:54 +00:00

16 lines
230 B
Kotlin
Vendored

// LL_FIR_DIVERGENCE
// KT-62861: Currently in LL FIR we don't have support for script files inside source roots
// LL_FIR_DIVERGENCE
// FILE: f1.kt
package test
class A
class F1
// FILE: A.kts
package test
val x = 1
class F1