mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
12 lines
224 B
D
12 lines
224 B
D
// https://issues.dlang.org/show_bug.cgi?id=22975
|
|
void test22975a(int) {};
|
|
|
|
alias test22975b = test22975a;
|
|
|
|
void test22975b(bool) {}
|
|
|
|
alias test22975c = test22975b;
|
|
|
|
alias test22975a = test22975c;
|
|
|
|
void test22975c(float) {}
|