mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
8 lines
230 B
C
8 lines
230 B
C
fn int[*] hello() // #error: Inferred array types can only be used in declarations with initializers
|
|
{
|
|
return int[3] { 1, 2, 3};
|
|
}
|
|
|
|
int[*] c; // #error: Inferred array types can only be used in declarations with initializers
|
|
|