Dactyloidae/media/webrtc/trunk/tools/gyp/test/mac/xcode-gcc/aliasing.cc

13 lines
159 B
C++
Raw Permalink Normal View History

#include <stdio.h>
void check(int* h, long* k) {
*h = 1;
*k = 0;
printf("%d\n", *h);
}
int main(void) {
long k;
check((int*)&k, &k);
return 0;
}