blob: 85ed2961d0ef6837ef3cd76d942b79eba3f722a1 [file] [edit]
// RUN: %clang_cc1 -std=c++20 -fsyntax-only -verify %s
constexpr void gh195416() {
struct U {
struct S {};
static constexpr S S::bar;
// expected-error@-1 {{non-friend class member 'bar' cannot have a qualified name}}
// expected-error@-2 {{static data member 'bar' not allowed in local struct 'S'}}
};
}