Sort collections/map APIs, improve empty implementations.

This commit is contained in:
Ilya Ryzhenkov
2014-12-01 16:26:39 +03:00
parent fa0542b801
commit 31fb24d390
13 changed files with 156 additions and 111 deletions
@@ -2,8 +2,8 @@ class A {}
fun <T> foo(t: T) {}
fun <T> emptyList(): MutableList<T> = throw Exception()
fun <T> someList(): MutableList<T> = throw Exception()
fun bar() {
<caret>foo(emptyList())
<caret>foo(someList())
}