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
protocol Drawable {
mut fun draw(rect: Rect) > void;
}
object<Drawable> Panel {
mut fun draw(rect: Rect) > void { ... } // Should not warn about `rect` not being used
}