Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
plugins
/
plugin-sandbox
/
testData
/
diagnostics
/
memberGen
/
classWithCompanionObject.kt
blob: ac695cd6f46da2a59ddc86cfbdc91aa6bbb17d4f [
file
]
import
org
.
jetbrains
.
kotlin
.
plugin
.
sandbox
.
CompanionWithFoo
@CompanionWithFoo
class
SomeClass
fun takeInt
(
x
:
Int
)
{}
fun test
()
{
takeInt
(
SomeClass
.
foo
())
takeInt
(
SomeClass
.
Companion
.
foo
())
}