github.com/Konstantin8105/c4go@v0.0.0-20240505174241-768bb1c65a51/tests/bind/bind.c (about) 1 #include "test.h" 2 3 int before(); 4 5 int main(void) 6 { 7 int q = before(); 8 view0(); 9 view1(); 10 view2(); 11 return q; 12 } 13 14 int before() 15 { 16 int i = 0; 17 int *q = &i; 18 return *q; 19 }