1 2 3 4 5 6 7 8 9 10 11
typedef i27 {} add(i27 a, i27 b => i27) { return a + b; } main() { add(20 as i27, 40 as i27); }