mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-12 00:37:41 +01: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 = 0;
|
|
buffer.length = size_t.max;
|
|
}
|