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