Files
swift-mirror/test/Interop/Cxx/templates/class-template-in-namespace-module-interface.swift
zoecarver b8e52a7ad2 [cxx-interop] Lazily import members of Clang namespaces and records via requests.
Also adds a ClangImporter request zone and move some requests into it.
2021-10-20 14:52:43 -07:00

11 lines
405 B
Swift

// RUN: %target-swift-ide-test -print-module -module-to-print=ClassTemplateInNamespace -I %S/Inputs -source-filename=x -enable-cxx-interop | %FileCheck %s
// CHECK: enum Space {
// CHECK: struct __CxxTemplateInstN5Space4ShipIJFvbEEEE {
// CHECK: init()
// CHECK: }
// CHECK: struct Ship<> {
// CHECK: }
// CHECK: typealias Orbiter = Space.__CxxTemplateInstN5Space4ShipIJFvbEEEE
// CHECK: }