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
Interface implementation internal int ExplicitFunc() cannot have an internal modifier.
Interface implementation void IFoo.ExplicitSub() should have generated delegating private method. Otherwise calls like Me.ExplicitSub() will fail to compile.
protected internal string IFoo.ExplicitProperty { get; set; } similar problems with properties.
VB.Net input code
Erroneous output
Few problems here:
internal int ExplicitFunc()
cannot have an internal modifier.void IFoo.ExplicitSub()
should have generated delegating private method. Otherwise calls like Me.ExplicitSub() will fail to compile.protected internal string IFoo.ExplicitProperty { get; set; }
similar problems with properties.Expected output
Details
I will create PR with a possible fix.
The text was updated successfully, but these errors were encountered: