Refactoring: move test folder out of "inline classes" folder

It was added there by mistake
This commit is contained in:
Mikhail Zarechenskiy
2019-11-18 17:31:28 +03:00
parent 0e90d538df
commit b7c43fc7db
2 changed files with 0 additions and 0 deletions
@@ -0,0 +1,15 @@
// !LANGUAGE: +FunctionInterfaceConversion
fun interface Foo {
fun invoke(): String
}
class A : Foo {
override fun invoke(): String {
return "OK"
}
}
fun box(): String {
return A().invoke()
}