'attribute' : this attribute cannot be used in conjunction with the attribute 'attribute'
The use of some attributes is mutually exclusive. For example, in the following code, the attempt to define a variable with the propget and property attributes causes this error.
typedef long HRESULT; #pragma keyword("interface", on) __interface IMyIF { [ propget, property(put=0) ] int data; };