KT-4945 Intention "Introduce static import" (for single symbol)

#KT-4945 Fixed
This commit is contained in:
Valentin Kipyatkov
2015-11-06 18:39:47 +03:00
parent 394b4f7cd4
commit 870fc9284b
16 changed files with 269 additions and 0 deletions
@@ -0,0 +1,9 @@
import kotlin.LazyThreadSafetyMode.NONE
// INTENTION_TEXT: "Add import for 'kotlin.LazyThreadSafetyMode.NONE'"
// WITH_RUNTIME
class A {
val v1: Int by lazy(NONE<caret>) { 1 }
val v2: Int by lazy(NONE) { 1 }
}