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,11 @@
// !LANGUAGE: +NewInference +FunctionInterfaceConversion +SamConversionPerArgument +SamConversionForKotlinFunctions
fun interface Foo {
fun invoke(): String
}
fun foo(f: Foo) = f.invoke()
fun box(): String {
return foo { "OK" }
}