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
I'm working through current benchmarks and ran across one that fails to compile with inlining enabled:
(coalton-toplevel
(declare fib (Integer -> Integer))
(define (fib n)
(when (== n 0)
(return 0))
(when (== n 1)
(return 1))
(+ (fib (- n 1))
(fib (- n 2)))))
error:
(during macroexpansion of (COALTON-TOPLEVEL
(DECLARE FIB ...)
...))
Invalid scc binding group. This should have been detected during typechecking.
The text was updated successfully, but these errors were encountered:
I'm working through current benchmarks and ran across one that fails to compile with inlining enabled:
The text was updated successfully, but these errors were encountered: