7 lines
153 B
Plaintext
7 lines
153 B
Plaintext
import java.io.Closeable
|
|
|
|
val c: java.io.Closeable = object: Closeable {
|
|
override fun close() {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
} |