Change mangling for local functions

This commit is contained in:
Yan Zhulanow
2019-01-09 21:48:39 +03:00
committed by Yan Zhulanow
parent aca3be12e9
commit 488418d960
5 changed files with 120 additions and 6 deletions
@@ -0,0 +1,9 @@
// LOCAL_VARIABLE_TABLE
fun foo() {
fun a() {}
fun a2() {}
fun a2(a: Int) {}
fun `b c`() {}
fun `c$d`() {}
}