| Daniel Dunbar | 8fbe78f | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -verify -fsyntax-only -std=c90 %s |
| 2 | // RUN: %clang_cc1 -verify -fsyntax-only -std=c99 %s | ||||
| Andy Gibbs | c6e68da | 2012-10-19 12:44:48 +0000 | [diff] [blame^] | 3 | // expected-no-diagnostics |
| Daniel Dunbar | 8c86163 | 2008-08-28 18:42:20 +0000 | [diff] [blame] | 4 | |
| Daniel Dunbar | 3e1888e | 2008-08-28 18:02:04 +0000 | [diff] [blame] | 5 | int f (int x) |
| 6 | { | ||||
| 7 | // sizeof applied to a type should not delete the type. | ||||
| 8 | return sizeof (int[x]); | ||||
| 9 | } | ||||