Currently, this is not allowed: ``` function pair(int a) returns (int, int) { return a, a + 1; } function forward(int a) returns (int, int) { return pair(a); } ``` We can consider making that allowed.
Currently, this is not allowed:
We can consider making that allowed.