Mercurial > hg > CbC > CbC_llvm
annotate clang/test/Parser/attr-availability-xcore.c @ 222:81f6424ef0e3 llvm-original
LLVM original branch
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 18 Jul 2021 22:10:01 +0900 |
parents | 79ff65ed7e25 |
children |
rev | line source |
---|---|
221 | 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-error {{expected string literal for optional message in 'availability' attribute}} | |
10 | |
11 void f8() __attribute__((availability(macosx,message="a" L"b"))); // expected-error {{expected string literal for optional message in 'availability' attribute}} |