2022-07-15 14:33:44 +02:00

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;
}