Add test for SAM adapter.

This commit is contained in:
Dmitry Petrov
2016-09-05 11:32:41 +03:00
committed by Dmitry Petrov
parent a4b9f6b215
commit 513ef0c1c8
3 changed files with 27 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
// FULL_JDK
// WITH_RUNTIME
fun test1() {
val hello = Runnable { println("Hello, world!") }
hello.run()
}