mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00

* Fix 23722 - Lambdas are mangled incorrectly when using multiple compilation units, resulting in incorrect code * Update test cases
6 lines
122 B
D
6 lines
122 B
D
auto f(string s, alias g)() {
|
|
return true;
|
|
}
|
|
|
|
alias a = f!("a", output => output);
|
|
alias b = f!("b", output => true);
|