mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-06 11:08:43 +00:00
9 lines
218 B
D
9 lines
218 B
D
|
// { dg-shouldfail "Memory allocation failed" }
|
||
|
// { dg-output "core.exception.OutOfMemoryError@.*: Memory allocation failed" }
|
||
|
void main()
|
||
|
{
|
||
|
void[] buffer;
|
||
|
buffer.length = 1;
|
||
|
buffer.length = size_t.max;
|
||
|
}
|