summaryrefslogtreecommitdiff
path: root/test/CXX/basic/basic.def/p2.cpp
blob: 598a79a8a3d7d13827f6b28903e08701c13c69fd (plain)
1
2
3
4
5
6
7
8
// RUN: %clang_cc1 -std=c++1z -verify %s -Wdeprecated

namespace {
  struct A {
    static constexpr int n = 0;
  };
  const int A::n; // expected-warning {{deprecated}}
}