Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fae15b3fc4205675bfb51513d6068f83490926d3
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
outstar.fir.kt
blob: 97dbf9f9e05d73ebb0bc8c8932d71673e5739ee1 [
file
] [
log
] [
blame
]
// Reproduces exception in TypeResolver.kt: EA-66870
import
java
.
util
.
ArrayList
abstract
class
J
{
public
abstract
fun
<
T
:
Collection
<
S
>,
S
:
List
<
out
*>>
foo
(
x
:
T
)
fun bar
()
{
val s
=
ArrayList
<
ArrayList
<
Int
>>()
foo
(
s
)
}
}