acpa/tests/fail/lang-change-local-var.ac
szdytom 7857473434
Add more test cases
Signed-off-by: szdytom <szdytom@qq.com>
2023-08-27 14:09:29 +08:00

9 lines
81 B
Plaintext

struct {
T1 = Fn<A, B>(h: A, y: B) -> A {
z = y;
z = h;
return z;
};
} main;