[Mercury Feature request] Allow generic properties

Generic properties.
They are now only possible within a generic class:

Class X(Of T)
    Property y As T
End class

It would be nice if you could do that without a generic class:

Property y(Of T) as T