Files
swift-mirror/test/Interop/Cxx/namespace/Inputs/using-from-namespace.h
Gabor Horvath 059051cf69 [cxx-interop] Fix crash in ASTMangler triggered by UsingShadowDecls
We did not handle this declaration kind. This PR introduces makes sure
we mangle it the same way we do for the target declaration.

Fixes #82108.
2025-06-10 15:50:54 +01:00

14 lines
182 B
C++

#pragma once
namespace Test {
class Foo {};
namespace Test2 {
class Bar {};
} // namespace Test2
using Test2::Bar;
} // namespace Test
using Test::Bar;
using Test::Foo;