mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
9 lines
469 B
Swift
9 lines
469 B
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: %target-swift-emit-module-interface(%t.swiftinterface) %s -module-name Mojuel
|
|
// RUN: %FileCheck %s < %t.swiftinterface
|
|
// RUN: %target-swift-typecheck-module-from-interface(%t.swiftinterface -module-name Mojuel)
|
|
|
|
// CHECK: public enum RecollectionOrganization<T> : ~Swift.BitwiseCopyable, Swift.Copyable where T : ~Copyable {
|
|
// CHECK-NEXT: }
|
|
public enum RecollectionOrganization<T : ~Copyable> : ~BitwiseCopyable, Copyable {}
|