Files
c3c/test/test_suite/cast/implicit_void_ptr_deep.c3
2023-03-03 14:43:32 +01:00

7 lines
98 B
Plaintext

fn void main()
{
int** y;
int* z;
void** x = y;
void** z2 = z; // #error: Implicitly casting
}