mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-12 00:37:41 +01:00
15 lines
221 B
D
15 lines
221 B
D
// { dg-shouldfail "Invalid memory operation" }
|
|
// { dg-output "core.exception.InvalidMemoryOperationError@.*: Invalid memory operation" }
|
|
struct S
|
|
{
|
|
~this()
|
|
{
|
|
new int;
|
|
}
|
|
}
|
|
|
|
void main()
|
|
{
|
|
new S;
|
|
}
|