blob: 1a9bf1df43c5d28771350efa98f167d8f55c0f2b [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
void check(int&) = delete;
void check(int const&) { }
template <typename>
struct A {
union {
int b;
};
struct {
int c;
};
union {
struct {
union {
struct {
struct {
int d;
};
};
};
};
};
int e;
void foo() const {
check(b);
check(c);
check(d);
check(d);
check(e);
}
};
int main(){
A<int> a;
a.foo();
}