android_system_core/libacc/tests/data/expr2.c
Jack Palevich 303d8ffca9 Improve local variable scoping.
Until now we faked local variables -- they only worked correctly if
there was no overlap between local variables and global variables.

Use a symbol table stack instead of a string list.

Fix bug with looking up undefined symbols.
2009-06-11 21:47:57 -07:00

6 lines
57 B
C

/* Test operators */
main() {
int a;
a = a++;
}