/in/foo.cc:8:29: error: return type specification for constructor invalid
void Time(int x,int y,int z):h(x),m(y),s(z){}
^
/in/foo.cc: In function 'int main()':
/in/foo.cc:18:7: error: no matching function for call to 'Time::Time()'
Time t1,t2;
^~
/in/foo.cc:8:7: note: candidate: Time::Time(int, int, int)
void Time(int x,int y,int z):h(x),m(y),s(z){}
^~~~
/in/foo.cc:8:7: note: candidate expects 3 arguments, 0 provided
/in/foo.cc:4:7: note: candidate: constexpr Time::Time(const Time&)
class Time{
^~~~
/in/foo.cc:4:7: note: candidate expects 1 argument, 0 provided
/in/foo.cc:4:7: note: candidate: constexpr Time::Time(Time&&)
/in/foo.cc:4:7: note: candidate expects 1 argument, 0 provided
/in/foo.cc:18:10: error: no matching function for call to 'Time::Time()'
Time t1,t2;
^~
/in/foo.cc:8:7: note: candidate: Time::Time(int, int, int)
void Time(int x,int y,int z):h(x),m(y),s(z){}
^~~~
/in/foo.cc:8:7: note: candidate expects 3 arguments, 0 provided
/in/foo.cc:4:7: note: candidate: constexpr Time::Time(const Time&)
class Time{
^~~~
/in/foo.cc:4:7: note: candidate expects 1 argument, 0 provided
/in/foo.cc:4:7: note: candidate: constexpr Time::Time(Time&&)
/in/foo.cc:4:7: note: candidate expects 1 argument, 0 provided
/in/foo.cc:22:13: error: no match for call to '(Time) (int&, int&, int&)'
t1(x1,y1,z1);
^
/in/foo.cc:23:13: error: no match for call to '(Time) (int&, int&, int&)'
t2(x2,y2,z2);
^