fork(1) download
  1. class CL
  2. {
  3. public:
  4. template <typename A, typename B, typename C>
  5. double operator ()()
  6. {
  7. return 6.6;
  8. }
  9. };
  10.  
  11. int main()
  12. {
  13. CL cl;
  14. double x = cl.template operator()<int,int,int> ();
  15. }
Success #stdin #stdout 0s 3336KB
stdin
Standard input is empty
stdout
Standard output is empty