blob: 7763f0a52d80a86a9236506a8d441f14f0ce7081 [file] [log] [blame]
// { dg-shouldfail "Invalid memory operation" }
// { dg-output "core.exception.InvalidMemoryOperationError@.*: Invalid memory operation" }
struct S
{
~this()
{
new int;
}
}
void main()
{
foreach(i; 0 .. 100)
new S;
}