mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
11 lines
171 B
Plaintext
11 lines
171 B
Plaintext
import std;
|
|
macro test(int[1][1] a) {
|
|
var b = a;
|
|
}
|
|
|
|
fn int main()
|
|
{
|
|
int[][1] b;
|
|
test(b); // #error: It is not possible to cast 'int[][1]' to 'int[1][1]'
|
|
return 12;
|
|
} |