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:
Douglas Gregor 2011-01-03 21:56:22 +00:00
Родитель 7a21fd45d4
Коммит 69e5aed635
1 изменённых файлов: 14 добавлений и 0 удалений

Просмотреть файл

@ -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 {