1 2 3 4 5 6 7 8 9 10 11 12
int func() { return 42; } int func(int i) { return i; } void main() { auto a = func(); }
(some replies deleted)