Files
kotlin-fork/compiler/testData/codegen/box/classes/classNamedAsOldPackageFacade.kt
T
Dmitry Petrov 8ab55813fe Dropping package facades:
- clashing JVM signature diagnostics should be reported in stable order
- drop tests for clashes vs package facades
- introduce box test for class named as old package facade
- fix some testData
2015-10-19 16:03:19 +03:00

7 lines
91 B
Kotlin
Vendored

package test
class TestPackage {
val OK = "OK"
}
fun box(): String = TestPackage().OK