Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
a85ce8a9cb14e4947074879ef42c33e8ac636266
/
.
/
test
/
Sema
/
PR2727.c
blob: 0829dc239df8ca166eb8ef3e30a90dbe5538789b [
file
] [
log
] [
blame
]
// RUN: clang-cc -verify -fsyntax-only -std=c90 %s
// RUN: clang-cc -verify -fsyntax-only -std=c99 %s
int
f
(
int
x
)
{
// sizeof applied to a type should not delete the type.
return
sizeof
(
int
[
x
]);
}