mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
9 lines
234 B
D
9 lines
234 B
D
// REQUIRED_ARGS: -de
|
|
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/depmsg15814.d(9): Deprecation: function `depmsg15814.get15814` is deprecated - bug15814
|
|
---
|
|
*/
|
|
deprecated("bug15814") int get15814() { return 0; }
|
|
enum val15814 = get15814();
|