blob: ad3dd8a24d88ffc10885f323ef3ad975e785d02b [file] [log] [blame]
David Blaikie030c7e92012-04-15 22:09:44 +00001// RUN: %clang_cc1 -Weverything -fsyntax-only %s -verify
Ted Kremenek4cf22532012-03-19 23:48:41 +00002
3// This previously crashed due to a bug in the CFG. Exercising all
4// warnings helps check CFG construction.
5class PR12271 {
6public:
7 PR12271();
8 ~PR12271();
9};
10
David Blaikie030c7e92012-04-15 22:09:44 +000011void testPR12271() { // expected-warning {{no previous prototype for function 'testPR12271'}}
12 PR12271 a[1][1]; // expected-warning {{unused variable 'a'}}
13}