Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
refactoring
/
introduceVariable
/
UsedAndUnusedExpressions1.kt
blob: ab077808f58e7230b15b84effd59215dc0bb7f07 [
file
] [
log
] [
blame
]
class
A
{
fun test
()
=
1
}
fun main
(
args
:
Array
<
String
>)
{
val a
=
A
()
<selection>
a
.
test
()</
selection
>
val b
=
a
.
test
()
}