6 lines
144 B
Plaintext
6 lines
144 B
Plaintext
// Can't convert from varying type "int32 *" to uniform type "int32 * uniform" for return
|
|
|
|
int * uniform func(int x) {
|
|
return new int[x];
|
|
}
|