Intention to import members with '*'

This commit is contained in:
Valentin Kipyatkov
2015-11-10 13:25:16 +03:00
parent d3f04c6310
commit fe7f79428d
30 changed files with 510 additions and 27 deletions
@@ -0,0 +1,20 @@
// 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
}