Files
kotlin-fork/compiler/testData/diagnostics/tests/redeclarations/ScriptAndClassConflict.kt
T
2015-11-19 22:56:57 +03:00

12 lines
115 B
Kotlin
Vendored

// FILE: f1.kt
package test
class <!REDECLARATION!>A<!>
class F1
// FILE: A.kts
package test
val x = 1
class F1