brintos

brintos / llvm-project-archived public Read only

0
0
Text · 280 B · ccb7a66 Raw
14 lines · cpp
1// RUN: %clang_cc1 -std=c++1z -verify %s -Wdeprecated2 3namespace {4  struct A {5    static constexpr int n = 0;6  };7  const int A::n; // expected-warning {{deprecated}}8 9  struct B {10    static constexpr int m = 0;11  };12  constexpr int B::m; // expected-warning {{deprecated}}13}14