Files
swift-mirror/test/Interop/Cxx/namespace/using-from-namespace.swift
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

7 lines
160 B
Swift

// RUN: %target-swift-emit-irgen -I %S/Inputs/ -cxx-interoperability-mode=default -g %s
import UsingFromNamespace
func f(_ foo: Foo) {}
func g(_ bar: Bar) {}