does the function lookup_name distinguish the identifier between
different contexts?

for example

void func1()
{
       int foo;
}

void func2()
{
       int foo;
}

if I call lookup_name with the foo ident-tree while parsing these
functions, will it return different decl-tree nodes?

thanks

Reply via email to