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
Copy file name to clipboardexpand all lines: test/Generics/deduction.swift
+1-1
Original file line number
Diff line number
Diff line change
@@ -216,7 +216,7 @@ func rangeOfIsBefore<
216
216
217
217
func callRangeOfIsBefore(ia:[Int], da:[Double]){
218
218
rangeOfIsBefore(ia.iterator())
219
-
rangeOfIsBefore(da.iterator()) // expected-error{{cannot invoke 'rangeOfIsBefore' with an argument list of type '(CollectionDefaultIterator<[Double]>)'}} expected-note{{expected an argument list of type '(R)'}}
219
+
rangeOfIsBefore(da.iterator()) // expected-error{{cannot invoke 'rangeOfIsBefore' with an argument list of type '(IndexingIterator<[Double]>)'}} expected-note{{expected an argument list of type '(R)'}}
0 commit comments