blob: 33c8542e365edcd0e42f5e2ee64edb962bbcb820 [file] [log] [blame]
// PR c++/98343
// { dg-options "-std=c++2a" }
namespace std
{
struct source_location
{
struct __impl
{
const char* _M_file_name;
const char* _M_function_name;
unsigned _M_line;
unsigned _M_column;
};
const __impl* _M_impl;
};
}
const void *ptr = __builtin_source_location ();