Example #1
0
void test_ScopeStackInsert() {
  SymTable t;
  Entity s("a", "class");
  t.insert(&s);
  ScopeStack stack;
  stack.push(&t);
  assert(stack.getEntityByName("a")==&s);
}