Problem with FManager::PropertyHolder::emplace_back
This is templated method used to emplace arbitrary items in implementation`s vector
As I see how library does, it is not instantiating things to type_list, mappings, etc - connected with lambda in emplace_back and user types AddToGlobal1_Property, AddToGlobal2_Property.
When it compiles, clang hangs on segmentations, GCC works well (UB??)
Actual Behavior
Problem with FManager::PropertyHolder::emplace_back This is templated method used to emplace arbitrary items in implementation`s vector As I see how library does, it is not instantiating things to type_list, mappings, etc - connected with lambda in emplace_back and user types AddToGlobal1_Property, AddToGlobal2_Property. When it compiles, clang hangs on segmentations, GCC works well (UB??)
Steps to Reproduce the Problem
https://godbolt.org/z/Gq5bKbdes
Please take a look, thanks!