fork download
  1.  
  2. template<class _Type>
  3. struct _Get_first_parameter{};
  4.  
  5. template<template<class, class...> class _Type,
  6. class _First,
  7. class... _Rest>
  8. struct _Get_first_parameter <_Type<_First, _Rest...> >
  9. {
  10. typedef _First Type;
  11. };
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
/usr/lib/gcc/i586-linux-gnu/4.9/../../../i386-linux-gnu/crt1.o: In function `_start':
(.text+0x18): undefined reference to `main'
collect2: error: ld returned 1 exit status
stdout
Standard output is empty