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
Super trait was not supported because it requires type resolution, which we didn't have. Now we have a working type resolution, we should implement the support for super trait.
To support this, the ngc needs to generate the following in the proxy given trait Trait: SuperTrait:
impl SuperTrait for TraitProxy {
fn method(&self) -> {
// Proxied called ....
}
}
The text was updated successfully, but these errors were encountered:
Super trait was not supported because it requires type resolution, which we didn't have. Now we have a working type resolution, we should implement the support for super trait.
To support this, the ngc needs to generate the following in the proxy given
trait Trait: SuperTrait
:The text was updated successfully, but these errors were encountered: