xref: /llvm-project/clang/test/Parser/attr-availability-xcore.c (revision a7eaaba69906d3305752cb738332b9365e666def)
1 // Test availability message string type when wide characters are 1 byte.
2 // REQUIRES: xcore-registered-target
3 // RUN: %clang_cc1 -triple xcore -fsyntax-only -verify %s
4 
5 #if !__has_feature(attribute_availability)
6 #  error 'availability' attribute is not available
7 #endif
8 
9 void f7() __attribute__((availability(macosx,message=L"wide"))); // expected-warning {{encoding prefix 'L' on an unevaluated string literal has no effect}}
10 
11 void f8() __attribute__((availability(macosx,message="a" L"b"))); // expected-warning {{encoding prefix 'L' on an unevaluated string literal has no effect}}
12