Add psi tests with the simplest test data
This commit is contained in:
committed by
Yan Zhulanow
parent
5fe0f167ca
commit
310bcc48a5
@@ -0,0 +1,6 @@
|
||||
import java.util.stream.Stream
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
val a<caret> = 100
|
||||
Stream.of(1, 2, 3).toArray()
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
import java.util.stream.Stream
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
Stream.of(1, 2, 3).toAr<caret>ray()
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
import one.util.streamex.StreamEx
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
StreamEx.of(1, 2, 3).to<caret>Array()
|
||||
}
|
||||
Reference in New Issue
Block a user