d: Merge upstream dmd 568496d5b, druntime 178c44ff, phobos 574bf883b.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / test17908.d
blob3520b5f44ee69ef0c2190ee78946e67a110fadb0
1 // PERMUTE ARGS:
3 @disable void foo() {}
4 void foo(int) {}
5 alias g = foo;
7 // make sure the order of declaration
8 // doesn't change anything
9 void bar(int) {}
10 @disable void bar() {}
11 alias h = bar;
13 void main()
15 g(10);
16 h(10);