In the following example:
foo (w: Int) (z: Int) -> Int =
w + z
I had to annotate the function args "inline". The following equivalent:
foo w z: Int -> Int -> Int =
w + z
Results in this error being thrown: TypeError "Cannot change empty Ann type to Classes type".