891e033d5b
#KT-9664 Fixed
11 lines
218 B
Kotlin
Vendored
11 lines
218 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
import javax.swing.SwingUtilities
|
|
|
|
fun bar() {
|
|
SwingUtilities.invokeLater(<caret>object: Runnable {
|
|
override fun run() {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
})
|
|
} |