The point the GP was making was that the following Go snippet:
func foo() {
x := []int { 1 }
//SNIP
}
Could translate to C either as:
void foo() {
int* x = malloc(1 * sizeof(int));
x[0] = 1;
//...
}
Or as
void foo() {
int data[1] = {1};
int *x = data;
//...
}
Depending on the content of //SNIP. However, some people think that the semantics can also match the semantics of the second version in C - when in fact the semantics of the Go code always match the first version, even when the actual implementation is the second version.