Add regression test for no resolution recursion

This commit is contained in:
Stanislav Erokhin
2017-08-18 12:04:45 +03:00
parent d9eef94a8e
commit 74e07b6580
5 changed files with 29 additions and 0 deletions
@@ -0,0 +1,5 @@
fun <T> T.at(element: Int) = this.at()
fun <T> T.at(): T = this
fun box(): String = "OK".at()