[OpenACC] Enable 'attach' clause for combined constructs
[llvm-project.git] / clang / test / SemaCXX / aggregate-init-cxx98.cpp
blob332801f0822cb564911fd49580b126b204fd39ba
1 // RUN: %clang_cc1 -std=c++98 -verify %s
3 struct A {
4 A() = default; // expected-warning {{C++11}}
5 int n;
6 };
7 A a = {0};