Commit 22f86c32 by Jason Merrill

avoid includes

From-SVN: r47064
parent 3b1a4132
// Based on a testcase by Eric Dumazet <Eric.Dumazet@COSMOSBAY.COM>
#include <cstdlib>
extern "C" void abort ();
const char * const foo = ""; // foo is not NULL
......@@ -8,5 +8,5 @@ int main() {
if ((foo == 0) ? 0 : foo) // so this should evaluate to `foo'
return 0;
else
std::abort();
abort();
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment