Kroppeb
12/12/2019, 9:17 PM::gcd
is referencing the Iterable<Int>.gcd()
instead of gcd(Int, Int)
.
Swapping ::gcd
to ::helpers.gcd
gives Unresolved reference: helpers
but renaming the function to something else and then back to gcd
will swap it to ::helpers.gcd
which is marked red with Internal Error occured while analyzing this expression
. How should I fix?Kroppeb
12/12/2019, 9:18 PMRuckus
12/12/2019, 9:22 PMreduce<Int, Int>(::gcd)
, but you should file an issue for this as well: https://kotl.in/issueKroppeb
12/12/2019, 9:24 PMKroppeb
12/12/2019, 9:33 PMRuckus
12/12/2019, 9:35 PM