Files
c3c/test/test_suite/cast/ptrdiff.c3
2025-06-23 23:47:26 +02:00

8 lines
115 B
Plaintext

import std;
fn int main()
{
void* a;
void* b;
int z = a - b; // #error: A pointer diff has the type
return 0;
}