blob: 21ab8311d36b44fb7a0f9c9ea8271f2960e07dda [file] [log] [blame]
// { dg-do compile { target c++2a } }
namespace std {
struct source_location {
struct __impl {
// Test that ordering doesn't matter
long long _M_column;
const char *_M_file_name;
int _M_line;
const char *_M_function_name;
};
};
}
auto x = __builtin_source_location ();