Note that the sentence doesn’t actually add the property P to any instances of K. To do that, it would have to be:
A K has an L called P.
but the sentence is:
A K can have an L called P.
While it doesn’t add property P to any instances of K, it still does something useful - it forward declares P as the name of a property, so it can be used where Inform expects the name of a property, even if there are no objects that provide the property:
if k provides property P:
let l be the P of k.
But it doesn’t prevent property P from being added to or queried on objects of kinds unrelated to K.
Does it do anything at all to kind K?
Or does it not matter which kind you use in that sentence?
And is this the standard way to forward declare a property identifier?