Class Base(Of T) | |
Protected x As T | |
End Class | |
Class Derived(Of T) | |
Inherits Base(Of T) | |
Public Sub F(y As Derived(Of String)) | |
' Error: Derived(Of T) cannot access Derived(Of String)'s | |
' protected members | |
y.x = "a" | |
End Sub | |
End Class |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment