blob: c41b29fbde76b461c45c7aa7a80c20d07a383585 [file] [log] [blame]
// { 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;
}