blob: 1ba3721c8c2ef8e8849227a31b035ae69611fc39 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only %s
Douglas Gregorb117a602009-09-04 05:53:02 +00002
Douglas Gregorc53d0d72010-04-08 18:16:15 +00003// This is a test for an egregious hack in Clang that works around
4// issues with GCC's evolution. libstdc++ 4.2.x uses __is_pod as an
5// identifier (to declare a struct template like the one below), while
6// GCC 4.3 and newer make __is_pod a keyword. Clang treats __is_pod as
7// a keyword *unless* it is introduced following the struct keyword.
8
Douglas Gregorb117a602009-09-04 05:53:02 +00009template<typename T>
10struct __is_pod {
Douglas Gregord2959702012-08-30 20:04:43 +000011 __is_pod() {}
Douglas Gregorb117a602009-09-04 05:53:02 +000012};
13
14__is_pod<int> ipi;
Douglas Gregorbfad9152011-04-28 15:48:45 +000015
Douglas Gregor877222e2011-04-29 01:38:03 +000016// Ditto for __is_same.
17template<typename T>
18struct __is_same {
19};
20
Douglas Gregor2cc702e2011-04-29 01:50:40 +000021__is_same<int> isi;
Douglas Gregor877222e2011-04-29 01:38:03 +000022
Douglas Gregorbfad9152011-04-28 15:48:45 +000023// Another, similar egregious hack for __is_signed, which is a type
24// trait in Embarcadero's compiler but is used as an identifier in
25// libstdc++.
26struct test_is_signed {
27 static const bool __is_signed = true;
28};
29
30bool check_signed = test_is_signed::__is_signed;
Douglas Gregor68876142011-07-30 07:01:49 +000031
Douglas Gregord2959702012-08-30 20:04:43 +000032template<bool B> struct must_be_true {};
33template<> struct must_be_true<false>;
34
35void foo() {
36 bool b = __is_pod(int);
37 must_be_true<__is_pod(int)> mbt;
38}
39#if !__has_feature(is_pod)
40# error __is_pod should still be available.
Douglas Gregor68876142011-07-30 07:01:49 +000041#endif