blob: 7784cba67be5efce30c37268e19a69d6a4c774f1 [file] [log] [blame]
// REQUIRED_ARGS: -de
/*
TEST_OUTPUT:
---
fail_compilation/fail13123.d(10): Deprecation: `fail13123.test`: `in` contract may throw but function is marked as `nothrow`
fail_compilation/fail13123.d(10): Deprecation: `fail13123.test`: `out` contract may throw but function is marked as `nothrow`
---
*/
void test() nothrow
in
{
throw new Exception(null);
}
out
{
throw new Exception(null);
}
do
{
}