Mercurial > hg > CbC > CbC_llvm
view clang/test/Sema/predef.c @ 236:c4bab56944e8 llvm-original
LLVM 16
author | kono |
---|---|
date | Wed, 09 Nov 2022 17:45:10 +0900 |
parents | 1d019706d866 |
children |
line wrap: on
line source
// RUN: %clang_cc1 -fsyntax-only -verify %s void abcdefghi12(void) { const char (*ss)[12] = &__func__; static int arr[sizeof(__func__)==12 ? 1 : -1]; } char *X = __func__; // expected-warning {{predefined identifier is only valid}} \ expected-warning {{initializing 'char *' with an expression of type 'const char[1]' discards qualifiers}} void a(void) { __func__[0] = 'a'; // expected-error {{variable is not assignable}} } // rdar://6097892 - GCC permits this. const char *b = __func__; // expected-warning {{predefined identifier is only valid}} const char *c = __FUNCTION__; // expected-warning {{predefined identifier is only valid}} const char *d = __PRETTY_FUNCTION__; // expected-warning {{predefined identifier is only valid}}