blob: de3673f7860de589119d005b02fc0f046019489d [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail10964.d(28): Error: function `fail10964.S.__postblit` is not `nothrow`
fail_compilation/fail10964.d(29): Error: function `fail10964.S.__postblit` is not `nothrow`
fail_compilation/fail10964.d(30): Error: function `fail10964.S.__postblit` is not `nothrow`
fail_compilation/fail10964.d(33): Error: function `fail10964.S.__postblit` is not `nothrow`
fail_compilation/fail10964.d(34): Error: function `fail10964.S.__postblit` is not `nothrow`
fail_compilation/fail10964.d(35): Error: function `fail10964.S.__postblit` is not `nothrow`
fail_compilation/fail10964.d(22): Error: `nothrow` function `fail10964.foo` may throw
---
*/
struct S
{
this(this)
{
throw new Exception("BOOM!");
}
}
void foo() nothrow
{
S ss;
S[1] sa;
// TOKassign
ss = ss;
sa = ss;
sa = sa;
// TOKconstruct
S ss2 = ss;
S[1] sa2 = ss;
S[1] sa3 = sa;
}