Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
resolvedCalls
/
secondaryConstructors
/
classWithGenerics.kt
blob: 27030a20544f8a8aa34faee0825fec8bd13a19e7 [
file
]
class
A
<
T
>
{
constructor
(
x
:
T
)
{}
}
val y
=
<caret>
A
(
1
)