Introduce Variable: Skip type in template if no resolvable/non-error types are available in the current context
#KT-10808 Fixed
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
fun main(args:Array<String>) {
|
||||
val old = pref.getString("", "")
|
||||
pref.edit().putString("", "").apply()
|
||||
<selection>LocalBroadcastManager.getInstance(this)</selection>.sendBroadcast(Intent(""))
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
fun main(args:Array<String>) {
|
||||
val old = pref.getString("", "")
|
||||
pref.edit().putString("", "").apply()
|
||||
val instance: Any = LocalBroadcastManager.getInstance(this)
|
||||
instance.sendBroadcast(Intent(""))
|
||||
}
|
||||
Reference in New Issue
Block a user