blob: 36b01785feec62256da9fe1476c2619e11e839c6 [file] [log] [blame]
// PR c++/46877
// { dg-options -std=c++0x }
struct new_allocator
{
constexpr new_allocator ();
};
struct string
{
constexpr string ()
{
}
new_allocator a;
};
struct pair
{
const string first;
constexpr pair ()
{
}
};
constexpr
new_allocator::new_allocator ()
{
}
pair p;