Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
resolvedCalls
/
secondaryConstructors
/
classWithGenerics2.kt
blob: 8a8fe1009bd04d7267e0eabb217a3e8fce3db111 [
file
]
class
A
<
T
,
R
>
{
constructor
(
x
:
T
)
{}
}
val y
=
<caret>
A
<
Int
,
String
>(
1
)