blob: 4a1630b013d3c607ae4f69e29541e84c0e043d98 [file] [log] [blame]
// Test whether this builtin minimally works in G++.
// Origin: Kaveh Ghazi Jan 16, 2001
// Copyright (C) 2001 Free Software Foundation.
//
// Special g++ Options: -O2
namespace std
{
extern "C" void abort (void);
}
int main ()
{
using namespace std;
if (::__builtin_strlen ("hello") != 5)
abort ();
return 0;
}