1 // RUN: %clang_cc1 -std=c++98 -verify %s 2 3 struct A { 4 A() = default; // expected-warning {{C++11}} 5 int n; 6 }; 7 A a = {0}; 8