clang でコンパイラ エラーが発生したため、最小限のテスト ケースを削減し始めました。しかし、縮小されたほとんどのテスト ケースでは、GCC は構文エラーが含まれていることを通知します。この構造を初期化するにはどうすればよいですか?
template<typename F>
struct Item
{
F *foo(); // with std::function clang also crash
};
template<typename F>
struct Container
{
static const Item<F> items[];
};
template<typename F>
const Item<F> Container<F>::items[] =
{
{ []() -> F { } }
// {{ []() -> F { } }} this also wrong
};
template struct Container<int>;
int main()
{
return 0;
}
GCC は次のように述べています。
clangBug.cc: In instantiation of ‘const Item<int> Container<int>::items []’:
clangBug.cc:24:17: required from here
clangBug.cc:17:15: error: too many initializers for ‘const Item<int>’
Clang マスター HEAD (040cd82aadd48ba50e9742881d648d53ddd2a6c9) が次のようにクラッシュする:
3 libc.so.6 0x00007f304c590037 gsignal + 55
4 libc.so.6 0x00007f304c593698 abort + 328
5 libc.so.6 0x00007f304c588e03
6 libc.so.6 0x00007f304c588eb2
7 clang 0x0000000000cd823e clang::Sema::InstantiateClassMembers(clang::SourceLocation, clang::CXXRecordDecl*, clang::MultiLevelTemplateArgumentList const&, clang::TemplateSpecializationKind) + 1646
8 clang 0x0000000000cd82f4 clang::Sema::InstantiateClassTemplateSpecializationMembers(clang::SourceLocation, clang::ClassTemplateSpecializationDecl*, clang::TemplateSpecializationKind) + 68
9 clang 0x0000000000c6c341 clang::Sema::ActOnExplicitInstantiation(clang::Scope*, clang::SourceLocation, clang::SourceLocation, unsigned int, clang::SourceLocation, clang::CXXScopeSpec const&, clang::OpaquePtr<clang::TemplateName>, clang::SourceLocation, clang::SourceLocation, llvm::MutableArrayRef<clang::ParsedTemplateArgument>, clang::SourceLocation, clang::AttributeList*) + 2225
10 clang 0x000000000097cb65 clang::Parser::ParseClassSpecifier(clang::tok::TokenKind, clang::SourceLocation, clang::DeclSpec&, clang::Parser::ParsedTemplateInfo const&, clang::AccessSpecifier, bool, clang::Parser::DeclSpecContext, clang::Parser::ParsedAttributesWithRange&) + 5733
11 clang 0x0000000000962dd7 clang::Parser::ParseDeclarationSpecifiers(clang::DeclSpec&, clang::Parser::ParsedTemplateInfo const&, clang::AccessSpecifier, clang::Parser::DeclSpecContext, clang::Parser::LateParsedAttrList*) + 3511
12 clang 0x00000000009c4a98 clang::Parser::ParseSingleDeclarationAfterTemplate(unsigned int, clang::Parser::ParsedTemplateInfo const&, clang::ParsingDeclRAIIObject&, clang::SourceLocation&, clang::AccessSpecifier, clang::AttributeList*) + 632
13 clang 0x00000000009c3fda clang::Parser::ParseExplicitInstantiation(unsigned int, clang::SourceLocation, clang::SourceLocation, clang::SourceLocation&, clang::AccessSpecifier) + 154