Mercurial > hg > CbC > CbC_llvm
view clang/test/CXX/special/class.conv/class.conv.ctor/p1.cpp @ 236:c4bab56944e8 llvm-original
LLVM 16
author | kono |
---|---|
date | Wed, 09 Nov 2022 17:45:10 +0900 |
parents | 1d019706d866 |
children |
line wrap: on
line source
// RUN: %clang_cc1 -std=c++11 %s -verify // expected-no-diagnostics namespace PR13003 { struct void_type { template <typename Arg0, typename... Args> void_type(Arg0&&, Args&&...) { } }; struct void_type2 { template <typename... Args> void_type2(Args&&...) { } }; struct atom { }; void_type v1 = atom(); void_type2 v2 = atom(); }