fork(1) download
  1. #include <tuple>
  2.  
  3. struct Fixture
  4. {
  5. template <typename T>
  6. struct Unpack
  7. {
  8. static constexpr const int value = 5;
  9. };
  10.  
  11. template <typename... T>
  12. struct Y
  13. {
  14. Y()
  15. :
  16. tup(Unpack<T>::value...)
  17. {
  18. }
  19.  
  20. std::tuple<T...> tup;
  21. };
  22.  
  23. Y<int, int, int> y;
  24. };
  25.  
  26. int main() { }
Success #stdin #stdout 0s 3092KB
stdin
Standard input is empty
stdout
Standard output is empty