fork(1) download
  1. #include <iostream>
  2. #include <tuple>
  3. struct Temperature
  4. {
  5. double degrees;
  6. Temperature add(double value) {
  7. return Temperature{degrees+value};
  8. }
  9. };
  10. template<typename T> struct FunctionSignatureParser; // Must declare a primary template with a missing implementation
  11. template<typename Result, typename...Args> struct FunctionSignatureParser<Result(Args...)>
  12. {
  13. using return_type = Result;
  14. using args_tuple = std::tuple<Args...>;
  15. template <size_t i> struct arg
  16. {
  17. typedef typename std::tuple_element<i, args_tuple>::type type;
  18. };
  19. };
  20. int main() {
  21. Temperature t{16};
  22. double increment{8};
  23. static_assert(std::is_same<double, FunctionSignatureParser<decltype(t.add)>::arg<0>::type>::value, "Method 'Temperature::add' does not use an argument of type 'double'");
  24. std::cout << t.degrees << u8" \u00b0C + " << increment << " == " << t.add(increment).degrees << u8" \u00b0C" << std::endl;
  25. return 0;
  26. }
Compilation error #stdin compilation error #stdout 0s 4444KB
stdin
Standard input is empty
compilation info
prog.cpp:23:72: error: reference to non-static member function must be called
        static_assert(std::is_same<double, FunctionSignatureParser<decltype(t.add)>::arg<0>::type>::value, "Method 'Temperature::add' does not use an argument of type 'double'");
                                                                            ~~^~~
prog.cpp:23:79: error: no type named 'arg' in the global namespace
        static_assert(std::is_same<double, FunctionSignatureParser<decltype(t.add)>::arg<0>::type>::value, "Method 'Temperature::add' does not use an argument of type 'double'");
                                                                                   ~~^
2 errors generated.
stdout
Standard output is empty