X-Git-Url: http://plrg.eecs.uci.edu/git/?p=cdsspec-compiler.git;a=blobdiff_plain;f=test.c;h=d771ce4368c0d8e0334826134f17bd4292323b0d;hp=ebb88e0f02f7616818ccc5235971a861afdd5724;hb=541ee814ad10bc181abd4d8825397249c6f86ad7;hpb=589dca6c19ba28251d70ef9ac3f757b6532d9c82 diff --git a/test.c b/test.c index ebb88e0..d771ce4 100644 --- a/test.c +++ b/test.c @@ -1,16 +1,9 @@ #include -#include -struct pair { - int x, y; -}; - -int func() { - return 3; -} +int test(); int main() { - int b; - b = (int a = func()); - return 0; + int a = test(); + printf("%d\n", a); + return 1; }