All pastes #236692 Raw Edit

Miscellany

public text v1 · immutable
#236692 ·published 2006-11-03 23:56 UTC
rendered paste body
<< this won't generate any warning >>

int *x;
void *y;
y = x;

<< this will give an incompatible pointer type warning >>

int **x;
void **y;
y = x;