21 lines
382 B
Plaintext
Vendored
21 lines
382 B
Plaintext
Vendored
// INTENTION_TEXT: "Import members from 'javax.swing.SwingUtilities'"
|
|
// WITH_RUNTIME
|
|
// ERROR: Unresolved reference: unresolved
|
|
|
|
import javax.swing.SwingUtilities
|
|
import javax.swing.SwingUtilities.*
|
|
|
|
fun foo() {
|
|
invokeLater { }
|
|
|
|
val bottom = <caret>BOTTOM
|
|
|
|
invokeAndWait {
|
|
invokeLater { }
|
|
}
|
|
|
|
val horizontal = HORIZONTAL
|
|
|
|
SwingUtilities.unresolved
|
|
}
|