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
//given this function...
fn func(t: ~Trait) {}
fn main() {
// this causes some sort of memory unsafety
func(~Struct {...});
// and this doesn't
func(~Struct {...} as ~Trait);
}