blob: 74121843e5e4874b42864ec57cd9cb82ea2dcefe [file] [log] [blame]
Douglas Gregor41b1d6b2010-04-19 21:31:25 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Douglas Gregor63c323d2010-04-19 22:34:40 +00002extern const int PR6495a = 42;
3extern int PR6495b = 42; // expected-warning{{'extern' variable has an initializer}}
Douglas Gregor66dd9392010-04-22 14:36:26 +00004extern const int PR6495c[] = {42,43,44};
John McCall379246d2011-03-26 02:09:52 +00005
Richard Smithc7f81162013-03-18 22:52:47 +00006extern struct Test1 {}; // expected-warning {{'extern' is not permitted on a declaration of a type}}
John McCall379246d2011-03-26 02:09:52 +00007extern "C" struct Test0 {}; // no warning