Ok, so these aren’t entirely compiler hints, but interesting nonetheless:
1. Re-Ordering of Catch Clauses
The compiler will throw the following warning if you catch specific exceptions after a general exception block:
Orchestraion.odx(653,17): warning X4001: automatically re-ordering catch clauses from specific to general
I’m surprised that this doesn’t throw an error as including a General catch block as […]