blob: 500d78048507507e9d1843a0b5a55f23a35e38d4 [file] [log] [blame]
namespace A{
void f(); // ERROR - .*
}
using namespace A;
void f(); // ERROR - .*
void g()
{
f(); // ERROR - ambiguous, ::f or A::f ?
}