Peter Collingbourne | c1b5fa4 | 2011-05-13 20:54:45 +0000 | [diff] [blame^] | 1 | // RUN: %clang_cc1 -E %s -o - | FileCheck %s |
| 2 | |
| 3 | // CHECK: c_static_assert |
| 4 | #if __has_extension(c_static_assert) |
| 5 | int c_static_assert(); |
| 6 | #endif |
| 7 | |
| 8 | // CHECK: c_generic_selections |
| 9 | #if __has_extension(c_generic_selections) |
| 10 | int c_generic_selections(); |
| 11 | #endif |
| 12 | |
| 13 | // CHECK: has_deleted_functions |
| 14 | #if __has_extension(cxx_deleted_functions) |
| 15 | int has_deleted_functions(); |
| 16 | #endif |
| 17 | |
| 18 | // CHECK: has_inline_namespaces |
| 19 | #if __has_extension(cxx_inline_namespaces) |
| 20 | int has_inline_namespaces(); |
| 21 | #endif |
| 22 | |
| 23 | // CHECK: has_override_control |
| 24 | #if __has_extension(cxx_override_control) |
| 25 | int has_override_control(); |
| 26 | #endif |
| 27 | |
| 28 | // CHECK: has_reference_qualified_functions |
| 29 | #if __has_extension(cxx_reference_qualified_functions) |
| 30 | int has_reference_qualified_functions(); |
| 31 | #endif |
| 32 | |
| 33 | // CHECK: has_rvalue_references |
| 34 | #if __has_extension(cxx_rvalue_references) |
| 35 | int has_rvalue_references(); |
| 36 | #endif |