10 lines
173 B
Plaintext
10 lines
173 B
Plaintext
import java.io.Closeable
|
|
|
|
val c: java.io.Closeable = object: Closeable {
|
|
override fun close() {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
}
|
|
|
|
//ELEMENT: object
|