mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
19 lines
201 B
Text
19 lines
201 B
Text
|
#include "third_party/chibicc/test/test.h"
|
||
|
|
||
|
_Thread_local int x;
|
||
|
|
||
|
void add(void) {
|
||
|
x += 3;
|
||
|
}
|
||
|
|
||
|
_Noreturn int test(void) {
|
||
|
x = 7;
|
||
|
add();
|
||
|
ASSERT(10, x);
|
||
|
exit(0);
|
||
|
}
|
||
|
|
||
|
int main(void) {
|
||
|
test();
|
||
|
}
|