blob: 3452883697a6d91458624ea793bbebe6b208d154 [file] [log] [blame]
Fariborz Jahanian6c813e12009-10-27 16:51:19 +00001// RUN: clang-cc -fsyntax-only -verify %s -std=c++0x
2
Eli Friedman49c16da2009-11-09 01:05:47 +00003struct A { // expected-error {{implicit default constructor for 'struct A' must explicitly initialize the const member 'i'}}
Fariborz Jahanian6f269202009-11-03 20:38:53 +00004 const int i; // expected-note {{declared at}}
5 virtual void f() { }
Fariborz Jahanian6c813e12009-10-27 16:51:19 +00006};
7
8int main () {
Eli Friedman49c16da2009-11-09 01:05:47 +00009 (void)A();
Fariborz Jahanian6c813e12009-10-27 16:51:19 +000010}