Test refactoring
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
data class StringPair(val first: String, val second: String)
|
||||
|
||||
fun String.to(second: String) = StringPair(this, second)
|
||||
|
||||
fun f(a: String?) {
|
||||
if (a != null) {
|
||||
val <!UNUSED_VARIABLE!>b<!>: StringPair = <!DEBUG_INFO_SMARTCAST!>a<!> to <!DEBUG_INFO_SMARTCAST!>a<!>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user