Mercurial > hg > CbC > CbC_llvm
annotate clang/test/Parser/sizeof-missing-parens.c @ 223:5f17cb93ff66 llvm-original
LLVM13 (2021/7/18)
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 18 Jul 2021 22:43:00 +0900 |
parents | 79ff65ed7e25 |
children | c4bab56944e8 |
rev | line source |
---|---|
221 | 1 // RUN: %clang_cc1 -fsyntax-only -verify %s |
2 | |
3 void Foo(int); | |
4 | |
5 #define Bar(x) Foo(x) | |
6 | |
7 void Baz() { | |
8 Foo(sizeof int); // expected-error {{expected parentheses around type name in sizeof expression}} | |
9 Bar(sizeof int); // expected-error {{expected parentheses around type name in sizeof expression}} | |
10 } |