Fixed NameSuggester tests

This commit is contained in:
Svetlana Isakova
2014-12-12 22:40:09 +03:00
parent cddaf89ee8
commit 9a5c293b6d
2 changed files with 6 additions and 2 deletions
@@ -1,7 +1,9 @@
class A() {}
fun <T> array(vararg t : T) : Array<T> = t as Array<T>
fun a() {
<selection>Array(2) {A()}</selection>
<selection>array(A(), A())</selection>
}
/*
array
@@ -1,5 +1,7 @@
fun <T> array(vararg t : T) : Array<T> = t as Array<T>
fun a() {
<selection>Array(2) {"text"}</selection>
<selection>array("a", "b")</selection>
}
/*
array