Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
classObjects
/
classObjectHeader.fir.kt
blob: d7ff67b3a3229f389837383aaa2bb359f9b0458f [
file
]
package
test
open
class
ToResolve
<
SomeClass
>(
f
:
(
Int
)
->
Int
)
fun testFun
(
a
:
Int
)
=
12
class
TestSome
<
P
>
{
companion
object
:
ToResolve
<
P
>({
testFun
(
it
)})
{
}
}