Minor: Fix test data

This commit is contained in:
Alexey Sedunov
2016-06-28 20:57:22 +03:00
parent efe718602a
commit 81ec18e1fc
@@ -1,7 +1,7 @@
import java.util.stream.Stream import java.util.stream.Stream
abstract class A : List<String> { abstract class A : List<String> {
override fun stream(): Stream<String>? { override fun stream(): Stream<String> {
<selection><caret>return super.stream()</selection> <selection><caret>return super.stream()</selection>
} }
} }