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 621d4c1 commit 7886d9eCopy full SHA for 7886d9e
test/Sema/bitwise_copyable_2.swift
@@ -40,3 +40,11 @@ func passMemoryLayout<T>(_ m: MemoryLayout<T>) { take(m) } // expected-error{{co
40
func passCommandLine(_ m: CommandLine) { take(m) } // expected-error{{conformance_availability_unavailable}}
41
42
func passUnicode(_ m: Unicode) { take(m) } // expected-error{{conformance_availability_unavailable}}
43
+
44
+import Builtin
45
46
+#if arch(arm)
47
+func passBuiltinFloat16(_ f: Builtin.FPIEEE16) { take(f) }
48
+@available(SwiftStdlib 5.3, *)
49
+func passFloat16(_ f: Float16) { take(f) }
50
+#endif
0 commit comments