mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
17 lines
222 B
D
17 lines
222 B
D
// 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;
|
|
}
|