tests/C_C++/self_pointer.c
2024-07-22 19:39:19 +02:00

7 lines
112 B
C

// @BAKE gcc $@ -o $*.out -ggdb
signed main() {
void * the_void = &the_void;
return *(int*)the_void;
}