3d8d92c7d3
- test data files renamed from *.jet to *.kt
13 lines
186 B
Kotlin
13 lines
186 B
Kotlin
// 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> {
|
|
fun create() : T? = null
|
|
}
|