зеркало из https://github.com/microsoft/clang-1.git
Add a test that is currently failing
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@122780 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
7a21fd45d4
Коммит
69e5aed635
|
@ -105,6 +105,20 @@ namespace Math {
|
|||
};
|
||||
|
||||
int check3[sum<1, 2, 3, 4, 5>::value == 15? 1 : -1];
|
||||
|
||||
#if 0
|
||||
// FIXME: Instantiation of this fails.
|
||||
template<int ... Values>
|
||||
struct lazy_sum {
|
||||
int operator()() {
|
||||
return sum<Values...>::value;
|
||||
}
|
||||
};
|
||||
|
||||
void f() {
|
||||
lazy_sum<1, 2, 3, 4, 5>()();
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
namespace Indices {
|
||||
|
|
Загрузка…
Ссылка в новой задаче