We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a74a84a commit 806921cCopy full SHA for 806921c
stdlib/public/core/Misc.swift
@@ -173,4 +173,8 @@ func _rethrowsViaClosure(_ fn: () throws -> ()) rethrows {
173
174
@_marker public protocol Escapable {}
175
176
-@_marker public protocol _BitwiseCopyable {}
+#if $NoncopyableGenerics && $NonescapableTypes
177
+@_marker public protocol _BitwiseCopyable: ~Escapable { }
178
+#else
179
+@_marker public protocol _BitwiseCopyable { }
180
+#endif
0 commit comments