Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/kt26.jet
T

10 lines
170 B
Plaintext

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