Files
kotlin-fork/jps-plugin/testData/incremental/pureKotlin/functionBecameInline/fun.kt.new
T
Evgeny Gerashchenko 7924568355 Added test for KT-6454 Obsolete class-files for lambdas aren't removed from output when 'inline' annotation is added to function.
The bug is reproducible only for non-incremental compilation mode, which
will be deprecated soon.

 #KT-6454 can't reproduce
2014-12-16 16:33:41 +03:00

5 lines
65 B
Plaintext
Vendored

class Y {
inline fun foo(f: () -> Unit) {
f()
}
}