HtmlTabledDescriptorRendererTest renamed to DiagnosticMessageTest

This commit is contained in:
Svetlana Isakova
2012-12-25 19:11:25 +04:00
parent 93fd2bf10f
commit b0302246a0
11 changed files with 4 additions and 4 deletions
@@ -0,0 +1,8 @@
class A<T, R>
fun <T, R> foo(a: A<T, R>) = a
fun test() {
foo { it }
foo { x -> x}
foo { (x: Int) -> x}
}