|
|
|
@ -1429,4 +1429,16 @@ namespace CXXRecordDeclWithoutDefinition
@@ -1429,4 +1429,16 @@ namespace CXXRecordDeclWithoutDefinition
|
|
|
|
|
|
|
|
|
|
template <> struct it<list<>> { }; |
|
|
|
|
template <> struct it<list<> const> { }; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
template<int... n> |
|
|
|
|
struct TestVariableWithoutType |
|
|
|
|
{ |
|
|
|
|
template<typename... Args> |
|
|
|
|
static constexpr int create(Args... args) |
|
|
|
|
{ |
|
|
|
|
return {}; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static constexpr auto variable = create(n...); |
|
|
|
|
}; |
|
|
|
|