pretty-fail.hxml.stderr 1005 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. [ERROR] Main.hx:8: characters 9-18
  2. 8 | C.f("hi");
  3. | ^^^^^^^^^
  4. | Could not find a suitable overload, reasons follow
  5. | Overload resolution failed for () -> Void
  6. 8 | C.f("hi");
  7. | ^^^^
  8. | Too many arguments
  9. | Overload resolution failed for (t : f.T) -> Void
  10. 8 | C.f("hi");
  11. | ^^^^
  12. | Constraint check failure for f.T
  13. | String should be Int
  14. | For function argument 't'
  15. [ERROR] Main.hx:9: characters 9-16
  16. 9 | C.f({});
  17. | ^^^^^^^
  18. | Could not find a suitable overload, reasons follow
  19. | Overload resolution failed for () -> Void
  20. 9 | C.f({});
  21. | ^^
  22. | Too many arguments
  23. | Overload resolution failed for (t : f.T) -> Void
  24. 9 | C.f({});
  25. | ^^
  26. | Constraint check failure for f.T
  27. | { } should be Int
  28. | For function argument 't'