mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
12 lines
227 B
Plaintext
12 lines
227 B
Plaintext
|
|
func void test()
|
|
{
|
|
int[3] x;
|
|
double *y = &x; // #error: Cannot implicitly cast 'int[3]*' to 'double*
|
|
}
|
|
|
|
func void test2()
|
|
{
|
|
int[3] x;
|
|
double[] z = &x; // #error: Cannot implicitly cast 'int[3]*' to 'double[]'
|
|
} |