10 lines
170 B
Plaintext
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
|
|
}
|
|
} |