source: src/examples/gc_no_raii/test/operators.c @ 00c32e9

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 00c32e9 was f1e42c1, checked in by Thierry Delisle <tdelisle@…>, 8 years ago

added some basic tests and modified compilation to support them

  • Property mode set to 100644
File size: 382 bytes
Line 
1#include "gc.h"
2
3#include <assert.h>
4
5int main(int argc, char *argv[])
6{
7        gcpointer(int) test, test1;
8
9        if(test != test1) { return 1; }
10        if(test == test1) { return 1; }
11        // if(test == 0)  { return 1; }
12        // if(test != 0)  { return 1; }
13        // if(test) { return 1; }
14
15        // *test.internal.ptr = 3;
16        // int i = *test;
17
18        gcmalloc();
19        // test = gcmalloc();
20
21        return 0;
22}
Note: See TracBrowser for help on using the repository browser.