[FIR] Introduce MetadataBasedAnnotationDeserializer for compiling common

^KT-56361 Fixed
This commit is contained in:
Kirill Rakhman
2023-02-03 17:51:50 +01:00
committed by Space Team
parent 81ac94b2d7
commit 22fd7921fe
11 changed files with 80 additions and 22 deletions
+7
View File
@@ -0,0 +1,7 @@
fun foo() {
"OK".apply { this }
"OK".apply2 { this }
}
inline fun String.apply2(f: String.() -> String) = this.f()