blob: 598a79a8a3d7d13827f6b28903e08701c13c69fd [file] [log] [blame]
// RUN: %clang_cc1 -std=c++1z -verify %s -Wdeprecated
namespace {
struct A {
static constexpr int n = 0;
};
const int A::n; // expected-warning {{deprecated}}
}