diff options
Diffstat (limited to 'test/Lexer/has_extension_cxx.cpp')
-rw-r--r-- | test/Lexer/has_extension_cxx.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Lexer/has_extension_cxx.cpp b/test/Lexer/has_extension_cxx.cpp index 6ffeebd..68b542f 100644 --- a/test/Lexer/has_extension_cxx.cpp +++ b/test/Lexer/has_extension_cxx.cpp @@ -47,3 +47,9 @@ int no_local_type_template_args(); #endif // CHECK: has_local_type_template_args + +#if __has_extension(cxx_binary_literals) +int has_binary_literals(); +#endif + +// CHECK: has_binary_literals |