blob: 907239734d43ec8fe243a9afb9b16370bfe86939 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/test17908a.d(10): Error: function `test17908a.foo` cannot be used because it is annotated with `@disable`
---
*/
@disable void foo();
@disable void foo(int) {}
alias g = foo;
void main()
{
g(10);
}