aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/other/new-size-type.C
blob: 04933fd4a2c1d7d94cbed6cd2c0d3dc45a2129a5 (plain)
1
2
3
4
5
6
7
8
9
10
// Contributed by Dodji Seketeli <dodji@redhat.com>
// Origin: PR c++/36741

#include <stddef.h>
const char*
foo()
{
    return new char[~static_cast<size_t>(0)];// { dg-bogus "large" }
}