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
methodassign<T>(&Tx, &Ty, Tv1, Tv2)
ensures*x==v1ensures*y==v2:
// Broken if x == y*x = v1*y = v2
This doesn't allow the dereference. I think to make this work, we need some information about T --- namely that it is statically sized. This is evident from the fact that it is passed as a parameter.