C

1
2
3
4
int *(*foo(void))[] {
    int *(*a)[];
    return a;
}
cs


go

1
2
3
4
func foo() *[]*int {
    var a *[]*int
    return a
}
cs


go 압승