Skip to content

Commit dc1c85b

Browse files
committed
Comment out code due to possible regression
1 parent f134028 commit dc1c85b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/FSharpPlus.Tests/General.fs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1701,7 +1701,10 @@ module Curry =
17011701
let f16 (t1, t2, t3, t4, t5, t6, t7: float, t8: char, t9: decimal, t10, t11, t12, t13, t14, t15, t16) = [t1+t2+t3+t4+t5+t6+ int t7 + int t8+ int t9+t10+t11+t12+t13+t14+t15+t16]
17021702
let f17 (t1, t2, t3, t4, t5, t6, t7: float, t8: char, t9: decimal, t10, t11, t12, t13, t14, t15, t16, t17) = [t1+t2+t3+t4+t5+t6+ int t7 + int t8+ int t9+t10+t11+t12+t13+t14+t15+t16+t17]
17031703

1704-
let _x1 = curryN f1 100
1704+
// Possible regression
1705+
// General.fs(1728,27): error FS0071: Type constraint mismatch when applying the default type 'Tuple<int>' for a type inference variable.
1706+
// Type mismatch. Expecting a '(Tuple<int> -> int list) -> int -> obj' but given a '(Tuple<int> -> int list) -> int -> int list' The type 'obj' does not match the type 'int list' Consider adding further type
1707+
// let _x1 = curryN f1 100
17051708
let _x2 = curryN f2 1 2
17061709
let _x3 = curryN f3 1 2 3
17071710
let _x7 = curryN f7 1 2 3 4 5 6 7

0 commit comments

Comments
 (0)