Files
kotlin-fork/jps/jps-plugin/testData/incremental/pureKotlin/functionBecameInline/fun.kt.new
T
Evgeny Gerashchenko 5eba550aef 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

Original commit: 7924568355
2014-12-16 16:33:41 +03:00

5 lines
65 B
Plaintext

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