blob: 332801f0822cb564911fd49580b126b204fd39ba [file] [log] [blame]
Richard Smith505ef812016-12-21 01:57:02 +00001// RUN: %clang_cc1 -std=c++98 -verify %s
2
3struct A {
4 A() = default; // expected-warning {{C++11}}
5 int n;
6};
7A a = {0};