dmd/compiler/test/fail_compilation/depmsg15814.d
2022-07-09 18:53:07 +02:00

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();