mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
18 lines
252 B
D
18 lines
252 B
D
/* PERMUTE_ARGS: -allinst
|
|
*/
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=15985
|
|
|
|
void ff()()
|
|
{
|
|
gg!()();
|
|
hh!()();
|
|
}
|
|
|
|
void gg()() { ff!()(); }
|
|
void hh()() { ff!()(); }
|
|
|
|
enum x = is(typeof(ff!()()));
|
|
alias my_g = gg!();
|
|
|
|
int main() { return 0; }
|