mirror of
https://github.com/opnsense/src.git
synced 2026-02-21 00:40:33 -05:00
15 lines
139 B
C++
15 lines
139 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
namespace A {
|
|
void g();
|
|
}
|
|
|
|
namespace X {
|
|
using A::g;
|
|
}
|
|
|
|
void h()
|
|
{
|
|
A::g();
|
|
X::g();
|
|
}
|