mirror of
https://github.com/ziglang/zig.git
synced 2025-12-12 01:03:13 +00:00
12 lines
167 B
C
12 lines
167 B
C
#include <stdlib.h>
|
|
int main(void) {
|
|
int i = 0;
|
|
*&i = 42;
|
|
if (i != 42) abort();
|
|
return 0;
|
|
}
|
|
|
|
// run-translated-c
|
|
// c_frontend=clang
|
|
// link_libc=true
|