Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0c35e97a8dc1b95945d4b0bc57de45a0550682bc
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
genericContainer.kt
blob: a0a09c7a1ab0dbef6964c7dd290d3d20f933bd37 [
file
]
// FIR_IDENTICAL
// FIR_DUMP
// FILE: GenericContainer.java
public
class
GenericContainer
<
SELF
extends
GenericContainer
<
SELF
>>
{
public
GenericContainer
(
String
dockerImageName
)
{
}
}
// FILE: test.kt
val container
=
GenericContainer
(
"nginx"
)