mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
This reverts commit 3066bd6919.
This re-lands a change after it got reverted because of a regression in the build of SwiftCompilerSources.
rdar://136838485
9 lines
436 B
Swift
9 lines
436 B
Swift
// RUN: %target-swift-ide-test -print-module -module-to-print=Constructors -I %S/Inputs -source-filename=x -enable-experimental-cxx-interop | %FileCheck %s
|
|
|
|
// CHECK: struct TemplatedCopyConstructor
|
|
// CHECK: struct TemplatedCopyConstructorWithExtraArg
|
|
|
|
// Make sure we don't import non-copyable types because we will have no way to
|
|
// represent and copy/move these in swift with correct semantics.
|
|
// CHECK-NOT: DeletedCopyConstructor
|