blob: f19bc181f411e863fb45d809324b567374daf230 [file] [log] [blame]
// REQUIRED_ARGS: -de
/*
TEST_OUTPUT:
---
fail_compilation/fail19202.d(11): Deprecation: variable `fail19202.X!().X` is deprecated
---
*/
void main()
{
auto b = X!();
}
template X()
{
deprecated enum X = true;
}