📅  最后修改于: 2022-03-11 14:44:45.920000             🧑  作者: Mango
代码示例1
new int(*[10])(); // error: parsed as (new int) (*[10]) ()
new (int (*[10])()); // okay: allocates an array of 10 pointers to functions