fork(1) download
  1. class cls {
  2. public:
  3. template <typename V> class nest {
  4. public:
  5. template <typename W> void bar(W x);
  6. };
  7. };
  8.  
  9.  
  10. template <typename V>
  11. template <typename W>
  12. void cls::nest<V>::bar(W x) {}
  13.  
  14.  
  15. int main( int argc, const char* argv[] ) {
  16. return 0;
  17. }
Success #stdin #stdout 0s 2848KB
stdin
Standard input is empty
stdout
Standard output is empty