diff options
Diffstat (limited to 'clang/test/Sema/PR2727.c')
-rw-r--r-- | clang/test/Sema/PR2727.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/clang/test/Sema/PR2727.c b/clang/test/Sema/PR2727.c new file mode 100644 index 0000000..332b0df --- /dev/null +++ b/clang/test/Sema/PR2727.c @@ -0,0 +1,8 @@ +// RUN: %clang_cc1 -verify -fsyntax-only -std=c90 %s +// RUN: %clang_cc1 -verify -fsyntax-only -std=c99 %s + +int f (int x) +{ + // sizeof applied to a type should not delete the type. + return sizeof (int[x]); +} |