blob: cf4bbde58d93b27604ee81c2b2108f24f9568ace [file] [log] [blame]
// 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;
}