Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
49b2ac1b100c5042a0e98582713938062efa6a31
/
.
/
compiler
/
testData
/
cli
/
jvm
/
newInferenceImpliesProgressiveModeForNI.kt
blob: 50c59914756b9f21bd78c4b6860986f96062f739 [
file
] [
log
] [
blame
]
fun bar
():
Int
=
0
object
Scope
{
fun
<
T
>
foo
(
f
:
()
->
T
):
T
=
f
()
fun bar
(
x
:
Int
=
0
):
String
=
""
fun test
()
{
val r1
=
foo
(::
bar
)
}
}