Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
implementAsConstructorParameter
/
implementAll.kt
blob: 5cb2d1c9cef07e6915a6f81930e213b1d27da4d7 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
// DISABLE-ERRORS
interface
T
<
X
>
{
val
<caret>
foo
:
X
}
class
U
:
T
<
String
>
{
}
class
V
:
T
<
Int
>
{
}
class
Z
:
T
<
Int
>
by
V
()
{
}
class
W
:
T
<
Boolean
>
{
override
val foo
:
Boolean
get
()
=
throw
UnsupportedOperationException
()
}