removed obsolete test

no more error 'NO_GET_METHOD' when there's get method with inappropriate signature
This commit is contained in:
Svetlana Isakova
2013-09-02 15:47:04 +04:00
parent 3f72c7a9e1
commit c242a833cb
3 changed files with 0 additions and 22 deletions
@@ -1,11 +0,0 @@
// "Create function 'get' from usage" "true"
import java.util.ArrayList
class Foo<T> {
fun <T, V> x (y: java.util.ArrayList<T>, w: java.util.ArrayList<V>) {
val z: java.util.ArrayList<T>? = if (y["", w]) null else null
}
}
fun <E, V> ArrayList<E>.get(s: String, w: ArrayList<V>): Boolean {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
}
@@ -1,6 +0,0 @@
// "Create function 'get' from usage" "true"
class Foo<T> {
fun <T, V> x (y: java.util.ArrayList<T>, w: java.util.ArrayList<V>) {
val z: java.util.ArrayList<T>? = if (y<caret>["", w]) null else null
}
}