Description:
MANR detects if the constant null may be used as the left operand of the '.' operation.
Example:
public void printMessage(String msg) { (msg != null ? new Message(msg) : null).Print(); }