Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
copyPaste
/
moveDeclarations
/
FromCompanionObjectToTopLevel.expected.kt
blob: 56bd1c8e9fdbba98573bba42e6510204f13accce [
file
] [
log
] [
blame
]
package
source
class
X
{
companion
object
{
fun other
()
{
foo
()
}
}
fun f
()
{
bar
++
}
}
fun foo
()
{
X
.
other
()
bar
++
}
var
bar
=
1