// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++11
structA{// expected-warning {{does not declare any constructor to initialize}}
constint i;// expected-note{{const member 'i' will never be initialized}} expected-note {{implicitly deleted}}
virtualvoidf(){}};intmain (){(void)A();// expected-error {{call to implicitly-deleted default constructor}}
}