Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
compiler
/
testData
/
cli
/
jvm
/
XnewInference
/
standaloneSamConversionsAreEnabledWithNewInference.kt
blob: 2b130e75adf8b201382f3bee3044d2f0e714bba5 [
file
]
object
ForceSam
:
java
.
util
.
Comparator
<
Runnable
>
{
override
fun compare
(
o1
:
Runnable
,
o2
:
Runnable
):
Int
=
0
}
fun test
(
r
:
Runnable
)
{
ForceSam
.
compare
(
r
,
r
)
ForceSam
.
compare
({},
{})
ForceSam
.
compare
(
r
,
{})
ForceSam
.
compare
({},
r
)
}