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
(func$module/foo<i32,i64> (resulti32)
call$module/isSameSize<i64,i64> ;; KO with same name (T in foo and T in isSameSize)call$module/isSameSize2<i64,i32> ;; OK when renaming T to T2 in isSameSize2i32.eq
)
When calling recursively a templated function, types seems to be wrong.
Steps to reproduce
Compile the following code:
Expected behavior
Function
test()
should return"i32"
.But this code generate an unexpected infinite loop because of recursive call with wrong types:
The text was updated successfully, but these errors were encountered: