fork download
  1.  
  2. template <unsigned N, typename T>
  3. struct vec {
  4.  
  5. template <unsigned M, typename S>
  6. inline void convert() const {}
  7. };
  8.  
  9. template <unsigned N, typename T>
  10. struct vecPair {
  11.  
  12. vec<N, T> a;
  13.  
  14. template <unsigned M, typename S>
  15. inline void convert() const {
  16. a.convert<M, S>();
  17. }
  18. };
  19.  
  20. int main() {}
Success #stdin #stdout 0s 3336KB
stdin
Standard input is empty
stdout
Standard output is empty