2010-06-30 00:52:24 +08:00
|
|
|
// RUN: %clang_cc1 -E -std=c++0x %s -o - | FileCheck --check-prefix=CHECK-0X %s
|
|
|
|
// RUN: %clang_cc1 -E %s -o - | FileCheck --check-prefix=CHECK-NO-0X %s
|
2010-01-13 16:31:49 +08:00
|
|
|
|
|
|
|
#if __has_feature(cxx_lambdas)
|
2011-01-26 23:36:03 +08:00
|
|
|
int has_lambdas();
|
2010-01-13 16:31:49 +08:00
|
|
|
#else
|
|
|
|
int no_lambdas();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// CHECK-0X: no_lambdas
|
|
|
|
// CHECK-NO-0X: no_lambdas
|
|
|
|
|
|
|
|
|
|
|
|
#if __has_feature(cxx_nullptr)
|
2010-01-13 16:58:42 +08:00
|
|
|
int has_nullptr();
|
2010-01-13 16:31:49 +08:00
|
|
|
#else
|
|
|
|
int no_nullptr();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// CHECK-0X: no_nullptr
|
|
|
|
// CHECK-NO-0X: no_nullptr
|
|
|
|
|
|
|
|
|
|
|
|
#if __has_feature(cxx_decltype)
|
2010-01-13 16:58:42 +08:00
|
|
|
int has_decltype();
|
2010-01-13 16:31:49 +08:00
|
|
|
#else
|
|
|
|
int no_decltype();
|
|
|
|
#endif
|
|
|
|
|
2010-01-13 16:58:42 +08:00
|
|
|
// CHECK-0X: has_decltype
|
2010-01-13 16:31:49 +08:00
|
|
|
// CHECK-NO-0X: no_decltype
|
|
|
|
|
|
|
|
|
|
|
|
#if __has_feature(cxx_auto_type)
|
2011-01-26 23:36:03 +08:00
|
|
|
int has_auto_type();
|
2010-01-13 16:31:49 +08:00
|
|
|
#else
|
|
|
|
int no_auto_type();
|
|
|
|
#endif
|
|
|
|
|
2011-02-20 20:13:05 +08:00
|
|
|
// CHECK-0X: has_auto_type
|
2010-01-13 16:31:49 +08:00
|
|
|
// CHECK-NO-0X: no_auto_type
|
|
|
|
|
|
|
|
|
|
|
|
#if __has_feature(cxx_attributes)
|
2011-01-26 23:36:03 +08:00
|
|
|
int has_attributes();
|
2010-01-13 16:31:49 +08:00
|
|
|
#else
|
|
|
|
int no_attributes();
|
|
|
|
#endif
|
|
|
|
|
2011-01-26 23:36:03 +08:00
|
|
|
// CHECK-0X: has_attributes
|
2010-01-13 16:31:49 +08:00
|
|
|
// CHECK-NO-0X: no_attributes
|
|
|
|
|
|
|
|
|
|
|
|
#if __has_feature(cxx_static_assert)
|
2010-01-13 16:58:42 +08:00
|
|
|
int has_static_assert();
|
2010-01-13 16:31:49 +08:00
|
|
|
#else
|
|
|
|
int no_static_assert();
|
|
|
|
#endif
|
|
|
|
|
2010-01-13 16:58:42 +08:00
|
|
|
// CHECK-0X: has_static_assert
|
2010-01-13 16:31:49 +08:00
|
|
|
// CHECK-NO-0X: no_static_assert
|
|
|
|
|
|
|
|
#if __has_feature(cxx_deleted_functions)
|
2011-01-26 23:36:03 +08:00
|
|
|
int has_deleted_functions();
|
2010-01-13 16:31:49 +08:00
|
|
|
#else
|
|
|
|
int no_deleted_functions();
|
|
|
|
#endif
|
|
|
|
|
2011-01-26 23:36:03 +08:00
|
|
|
// CHECK-0X: has_deleted_functions
|
|
|
|
// CHECK-NO-0X: no_deleted_functions
|
2010-01-13 16:31:49 +08:00
|
|
|
|
|
|
|
|
|
|
|
#if __has_feature(cxx_rvalue_references)
|
2011-01-26 23:36:03 +08:00
|
|
|
int has_rvalue_references();
|
2010-01-13 16:31:49 +08:00
|
|
|
#else
|
|
|
|
int no_rvalue_references();
|
|
|
|
#endif
|
|
|
|
|
2011-01-26 23:36:03 +08:00
|
|
|
// CHECK-0X: has_rvalue_references
|
|
|
|
// CHECK-NO-0X: no_rvalue_references
|
2010-01-13 16:31:49 +08:00
|
|
|
|
|
|
|
|
|
|
|
#if __has_feature(cxx_variadic_templates)
|
2011-01-26 23:36:03 +08:00
|
|
|
int has_variadic_templates();
|
2010-01-13 16:31:49 +08:00
|
|
|
#else
|
|
|
|
int no_variadic_templates();
|
|
|
|
#endif
|
|
|
|
|
2011-01-26 23:36:03 +08:00
|
|
|
// CHECK-0X: has_variadic_templates
|
|
|
|
// CHECK-NO-0X: no_variadic_templates
|
2010-09-01 07:28:47 +08:00
|
|
|
|
|
|
|
|
|
|
|
#if __has_feature(cxx_inline_namespaces)
|
2011-01-26 23:36:03 +08:00
|
|
|
int has_inline_namespaces();
|
2010-09-01 07:28:47 +08:00
|
|
|
#else
|
|
|
|
int no_inline_namespaces();
|
|
|
|
#endif
|
|
|
|
|
2011-01-26 23:36:03 +08:00
|
|
|
// CHECK-0X: has_inline_namespaces
|
|
|
|
// CHECK-NO-0X: no_inline_namespaces
|
2011-01-27 05:25:54 +08:00
|
|
|
|
|
|
|
#if __has_feature(cxx_reference_qualified_functions)
|
|
|
|
int has_reference_qualified_functions();
|
|
|
|
#else
|
|
|
|
int no_reference_qualified_functions();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// CHECK-0X: has_reference_qualified_functions
|
|
|
|
// CHECK-NO-0X: no_reference_qualified_functions
|
|
|
|
|
2011-02-06 04:35:30 +08:00
|
|
|
#if __has_feature(cxx_default_function_template_args)
|
|
|
|
int has_default_function_template_args();
|
|
|
|
#else
|
|
|
|
int no_default_function_template_args();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// CHECK-0X: has_default_function_template_args
|
|
|
|
// CHECK-NO-0X: no_default_function_template_args
|
|
|
|
|
2011-03-16 05:17:12 +08:00
|
|
|
#if __has_feature(cxx_noexcept)
|
|
|
|
int has_noexcept();
|
|
|
|
#else
|
|
|
|
int no_noexcept();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// CHECK-0X: has_noexcept
|
|
|
|
// CHECK-NO-0X: no_noexcept
|
|
|
|
|