'parameter' : already seen this property argument
Parameters to the property attribute are not repeatable.
For example, in the following code the parameter put
appears twice on the property attribute.
#pragma keyword("interface", on) struct IUnknown { }; interface IMyIF { [ property(put=0, put=0) ] int data; };