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 stumbled on this while searching for clues on a similar (but unfortunately not identical) error.
Here's the repro code and backtrace:
trait T
fun some() =>
"Do nothing"
class TClass is T
let _l: String
new create(l: String) =>
_l = consume l
fun some() =>
"Do nothing"
actor Act
let _c: T iso
new create(c: T iso) =>
_c = consume c
actor Main
new create(env: Env) =>
let c: T iso^ = TClass.create("")
let a: Act = Act.create(consume c)
SeanTAllen
changed the title
I stumbled on this while searching for clues on a similar (but unfortunately not identical) error.
Segfault from bad cap in code
Feb 20, 2024
Here's the repro code and backtrace:
Fails with
Using version 0.58.1-fe3895eb from the most recent release tag, running on Ubuntu 20.04 on Intel.
Originally posted by @nisanharamati in #4344 (comment)
The text was updated successfully, but these errors were encountered: