18 lines · cpp
1// Only run this test where ulimit is known to work well.2// (There's nothing really platform-specific being tested, this is just ulimit).3//4// REQUIRES: system-linux5// UNSUPPORTED: msan6// UNSUPPORTED: asan7// UNSUPPORTED: hwasan8//9// RUN: ulimit -v 104857610// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify -triple=x86_64 %s11// expected-no-diagnostics12 13// This used to require too much memory and crash with OOM.14struct {15 int a, b, c, d;16} arr[1<<30];17 18