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
Oh good, another bug involving access. Just throw it on the dead letter pile.
classFoo(x: Int) {
// a private type should never be displayedprivatetypeThis=Foodef+ (x: This):This=this
}
classBar {
newFoo(5) +Nil// required: Foovalv=newFoo(5)
v +Nil// required: Bar.this.v.This (which expands to) Foo
}