fork download
  1. template <typename T>
  2. struct Coor
  3. {
  4. T x, y;
  5. };
  6.  
  7. template<typename T>
  8. void Algorithm(Coor<T> &coor)
  9. {
  10. func(coor.x);
  11. func(coor.y);
  12. }
  13.  
  14. template<typename T>
  15. void func(T &axie)
  16. {
  17. axie += 5566;
  18. }
  19.  
  20. int main()
  21. {
  22. Coor<int> coor;
  23. Algorithm(coor);
  24. return 0;
  25. }
  26.  
Success #stdin #stdout 0.01s 2720KB
stdin
Standard input is empty
stdout
Standard output is empty