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

17 lines
379 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail349.d(15): Error: function `fail349.bug6109throwing` is not `nothrow`
fail_compilation/fail349.d(13): Error: function `fail349.bug6109noThrow` may throw but is marked as `nothrow`
---
*/
int bug6109throwing()
{
throw new Exception("throws");
}
int bug6109noThrow() nothrow
{
auto g = [4][0 .. bug6109throwing()];
return 0;
}