Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/kt26.kt
T
2012-10-19 19:42:54 +04:00

13 lines
191 B
Kotlin
Vendored

// FILE: a.kt
// KT-26 Import namespaces defined in this file
import html.* // Must not be an error
// FILE: b.kt
package html
abstract class Factory<T: Any> {
fun create() : T? = null
}