mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
22 lines
539 B
D
22 lines
539 B
D
/*
|
|
REQUIRED_ARGS: -verrors=simple -verrors=3
|
|
TEST_OUTPUT:
|
|
---
|
|
compilable/deprecationlimit.d(18): Deprecation: function `deprecationlimit.f` is deprecated
|
|
compilable/deprecationlimit.d(19): Deprecation: function `deprecationlimit.f` is deprecated
|
|
compilable/deprecationlimit.d(20): Deprecation: function `deprecationlimit.f` is deprecated
|
|
1 deprecation warning omitted, use `-verrors=0` to show all
|
|
---
|
|
*/
|
|
|
|
deprecated void f()
|
|
{
|
|
}
|
|
|
|
void main()
|
|
{
|
|
f();
|
|
f();
|
|
f();
|
|
static assert("1"); // also surpress deprecationSupplemental
|
|
}
|