Mercurial > hg > CbC > CbC_llvm
view clang/test/Sema/anonymous-struct-union-c11.c @ 266:00f31e85ec16 default tip
Added tag current for changeset 31d058e83c98
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 14 Oct 2023 10:13:55 +0900 |
parents | 1d019706d866 |
children |
line wrap: on
line source
// Check for warnings in non-C11 mode: // RUN: %clang_cc1 -fsyntax-only -std=c99 -verify -Wc11-extensions %s // Expect no warnings in C11 mode: // RUN: %clang_cc1 -fsyntax-only -std=c11 -pedantic -Werror %s struct s { int a; struct { // expected-warning{{anonymous structs are a C11 extension}} int b; }; }; struct t { int a; union { // expected-warning{{anonymous unions are a C11 extension}} int b; }; };