disable broken tests on net_4_0
[mcs.git] / docs / ecma334 / 14.2.3.xml
blob018ab97578f0809a6401dd72752759462e7e109f
1 <?xml version="1.0"?>
2 <clause number="14.2.3" title="Unary operator overload resolution">
3   <paragraph>An operation of the form op x or x op, where op is an overloadable unary operator, and x is an expression of type X, is processed as follows: <list><list_item> The set of candidate user-defined operators provided by X for the operation operator op(x) is determined using the rules of <hyperlink>14.2.5</hyperlink>. </list_item><list_item> If the set of candidate user-defined operators is not empty, then this becomes the set of candidate operators for the operation. Otherwise, the predefined unary operator op implementations become the set of candidate operators for the operation. The predefined implementations of a given operator are specified in the description of the operator (<hyperlink>14.5</hyperlink> and <hyperlink>14.6</hyperlink>). </list_item><list_item> The overload resolution rules of <hyperlink>14.4.2</hyperlink> are applied to the set of candidate operators to select the best operator with respect to the argument list (x), and this operator becomes the result of the overload resolution process. If overload resolution fails to select a single best operator, a compile-time error occurs. </list_item></list></paragraph>
4 </clause>