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