// Enable for dexing once we have a D8 version with a fix for // https://issuetracker.google.com/148661132 // IGNORE_DEXING // NO_CHECK_LAMBDA_INLINING // FILE: 1.kt package test inline fun test(p: T, s: () -> () -> T = { { p } }) = s() val same = test("O") // FILE: 2.kt import test.* fun box(): String { val inlined = test("K") return same() + inlined() }