aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp1z/namespace-attribs.C
blob: 29f8ce472be180c9a6847d72c006d4a2e6305625 (plain)
1
2
3
4
5
6
7
8
9
10
// { dg-do compile { target c++17 } }
// { dg-options "" }

namespace A __attribute ((visibility ("default"))) {}

namespace B [[deprecated]] {}

namespace __attribute ((visibility ("default"))) C {}

namespace [[deprecated]] D {}