Files
swift-mirror/test/ModuleInterface/conformance_suppression.swift
Becca Royal-Gordon 1f008fb0d0 [ModuleInterface] Enable module selectors by default
And update tests to use them.

This commit depends on fixes in swiftlang/swift PRs #86905, #87129, and #87130.

Fixes rdar://169749886.
2026-02-20 00:35:23 -08:00

9 lines
471 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 {}