You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
init(@SimpleArrayBuilder build3:()->ContiguousArray<Element>){ // expected-error {{unable to infer generic parameters for result builder 'SimpleArrayBuilder'}}
1259
+
self=Array(build3())
1260
+
}
1261
+
}
1262
+
1263
+
extensionSet{
1264
+
init(@CollectionBuilder build:()->Self){
1265
+
self=build()
1266
+
}
1267
+
1268
+
init(@CollectionBuilder build2:()->[Element]){
1269
+
self=Set(build2())
1270
+
}
1271
+
1272
+
init(@SimpleArrayBuilder build3:()->Self){ // expected-error {{unable to infer generic parameters for result builder 'SimpleArrayBuilder'}}
0 commit comments