|
|
@ -1574,3 +1574,13 @@ class TemplateClass : TemplateClassBase<A,B> { |
|
|
|
using Func = std::function<B(XType)>; |
|
|
|
using Func = std::function<B(XType)>; |
|
|
|
explicit TemplateClass(Func function) {} |
|
|
|
explicit TemplateClass(Func function) {} |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct DLL_API StructWithIndirectReturn |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
StructWithIndirectReturn(); |
|
|
|
|
|
|
|
StructWithIndirectReturn(StructWithIndirectReturn&); |
|
|
|
|
|
|
|
StructWithIndirectReturn(StructWithIndirectReturn&&); |
|
|
|
|
|
|
|
int A; |
|
|
|
|
|
|
|
static StructWithIndirectReturn ReturnStructIndirectReturn(); |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|