8540c487c6
* gdb.cp/namespace-using.exp: Add test for printing of namespaces imported into file scope. Marked test as xfail. * gdb.cp/namespace-using.cc (marker5): New function. * gdb.cp/shadow.exp: New test. * gdb.cp/shadow.cc: New test program. * gdb.cp/nsimport.exp: New test. * gdb.cp/nsimport.cc: New test program. 2010-01-26 Sami Wagiaalla <swagiaal@redhat.com> PR gdb/10929: * dwarf2read.c (read_lexical_block_scope): Create blocks for scopes which contain using directives even if they contain no declarations. * symtab.c (lookup_symbol_aux): Pass lowest level block to la_lookup_symbol_nonlocal. * cp-namespace.c (cp_lookup_symbol_nonlocal): call cp_lookup_symbol_namespace. (cp_lookup_symbol_namespace): Perform an import lookup at every block level. (cp_lookup_symbol_imports): New function. (cp_lookup_symbol_in_namespace): New function.
20 lines
161 B
C++
20 lines
161 B
C++
namespace A {
|
|
int x = 11;
|
|
namespace{
|
|
int xx = 22;
|
|
}
|
|
}
|
|
|
|
using namespace A;
|
|
|
|
namespace{
|
|
int xxx = 33;
|
|
};
|
|
|
|
int main()
|
|
{
|
|
x;
|
|
xx;
|
|
xxx;
|
|
return 0;
|
|
}
|