commit | 2c0221dbb7ccbf67df9b19289f6590f5f804ae11 | [log] [tgz] |
---|---|---|
author | Mikhail Zarechenskiy <mikhail.zarechenskiy@jetbrains.com> | Tue Mar 24 00:46:31 2020 +0300 |
committer | Mikhail Zarechenskiy <mikhail.zarechenskiy@jetbrains.com> | Tue Mar 24 00:46:31 2020 +0300 |
tree | e8919615abd389733b606c300c39bb70cdbc9a34 | |
parent | 444ff01f046129df81dfb32e835db60e037ecb6e [diff] |
wip: test
diff --git a/compiler/testData/multiplatform/funInterfaces/common.kt b/compiler/testData/multiplatform/funInterfaces/common.kt index c3c5999..3d08a65 100644 --- a/compiler/testData/multiplatform/funInterfaces/common.kt +++ b/compiler/testData/multiplatform/funInterfaces/common.kt
@@ -10,4 +10,5 @@ fun test() { foo { "OK" } + foo(KRunnable { "OK "}) } \ No newline at end of file
diff --git a/compiler/testData/multiplatform/funInterfaces/js.kt b/compiler/testData/multiplatform/funInterfaces/js.kt index 6896302..b95746b 100644 --- a/compiler/testData/multiplatform/funInterfaces/js.kt +++ b/compiler/testData/multiplatform/funInterfaces/js.kt
@@ -10,4 +10,5 @@ fun test() { foo { "OK" } + foo(KRunnable { "OK " }) } \ No newline at end of file
diff --git a/compiler/testData/multiplatform/funInterfaces/jvm.kt b/compiler/testData/multiplatform/funInterfaces/jvm.kt index 773e3b7..3943376 100644 --- a/compiler/testData/multiplatform/funInterfaces/jvm.kt +++ b/compiler/testData/multiplatform/funInterfaces/jvm.kt
@@ -10,4 +10,5 @@ fun test() { foo { "OK" } + foo(KRunnable { "OK " }) } \ No newline at end of file