Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
750c85ea8efd0f899cdf7ba9060d1286ba14be9a
/
.
/
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
]);
}