Mercurial > hg > CbC > CbC_llvm
view clang/test/SemaCXX/PR22637.cpp @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 |
parents | |
children |
line wrap: on
line source
// 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(); }