mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
18 lines
296 B
D
18 lines
296 B
D
// REQUIRED_ARGS: -verror-style=gnu
|
|
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/test20515.d:16: Deprecation: function `test20515.foo` is deprecated
|
|
fail_compilation/test20515.d:17: Error: undefined identifier `bar`
|
|
---
|
|
*/
|
|
|
|
module test20515;
|
|
|
|
deprecated void foo() { }
|
|
|
|
void test()
|
|
{
|
|
foo;
|
|
bar;
|
|
}
|