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 7886d9e commit 8a35b07Copy full SHA for 8a35b07
test/Sema/bitwise_copyable_2.swift
@@ -48,3 +48,17 @@ func passBuiltinFloat16(_ f: Builtin.FPIEEE16) { take(f) }
48
@available(SwiftStdlib 5.3, *)
49
func passFloat16(_ f: Float16) { take(f) }
50
#endif
51
+
52
+enum E_Raw_Int : Int {
53
+ case one = 1
54
+ case sixty_three = 63
55
+}
56
57
+func passE_Raw_Int(_ e: E_Raw_Int) { take(e) }
58
59
+enum E_Raw_String : String {
60
+ case one = "one"
61
+ case sixty_three = "sixty three"
62
63
64
+func passE_Raw_String(_ e: E_Raw_String) { take(e) }
0 commit comments