blob: dfe0f46ea25505520ab0e4b1f289ce87feb11b51 [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++0x
Fariborz Jahanian11565482009-10-27 16:51:19 +00002
Alexis Hunta671bca2011-05-20 21:43:47 +00003struct A { //expected-note {{marked deleted here}} \
4 // expected-warning {{does not declare any constructor to initialize}}
5 const int i; // expected-note{{const member 'i' will never be initialized}}
Fariborz Jahanian7ad36162009-11-03 20:38:53 +00006 virtual void f() { }
Fariborz Jahanian11565482009-10-27 16:51:19 +00007};
8
9int main () {
Alexis Hunta671bca2011-05-20 21:43:47 +000010 (void)A(); // expected-error {{call to deleted constructor}}
Fariborz Jahanian11565482009-10-27 16:51:19 +000011}