blob: 4456e75c7075b754e8e5be0971f469341452f6cd [file] [log] [blame]
// https://issues.dlang.org/show_bug.cgi?id=23968
// REQUIRED_ARGS: -de
/*
TEST_OUTPUT:
---
fail_compilation/test23968.d(22): Deprecation: alias `test23968.a` is deprecated
---
*/
int fun()(int)
{
return 0;
}
deprecated alias a = fun;
void main()
{
int v;
int y = v.a!(); // No deprecation?
}