a4b2a8c4ea
#KT-53908 Fixed May fix also KT-53271
14 lines
254 B
Kotlin
Vendored
14 lines
254 B
Kotlin
Vendored
// 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")
|