mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-04-06 07:46:13 +00:00
Mangle bytecode method names according to declaration scope
This commit is contained in:
@@ -73,7 +73,10 @@ public class CodeGenTest {
|
||||
}
|
||||
|
||||
fun concatThree(a: str, b: str, c: str): str {
|
||||
return a + b + c;
|
||||
fun concatTwo(a: str, b: str): str {
|
||||
return a + b;
|
||||
}
|
||||
return concatTwo(a, b) + c;
|
||||
}
|
||||
|
||||
fun retStr(): str {
|
||||
|
||||
Reference in New Issue
Block a user