232d1bd9ef
#KT-15825 Fixed (cherry picked from commit 9b29ebb)
9 lines
291 B
Plaintext
Vendored
9 lines
291 B
Plaintext
Vendored
// ERROR: Super calls to Java default methods are prohibited in JVM target 1.6. Recompile with '-jvm-target 1.8'
|
|
import java.util.stream.Stream
|
|
|
|
abstract class A : List<String> {
|
|
override fun stream(): Stream<String> {
|
|
<selection><caret>return super.stream()</selection>
|
|
}
|
|
}
|