Report occurrences where usages of "magic" constants only are allowed but other expressions are used instead.
E.g.
new Font("Arial", 2 ) // not allowed
instead of new Font("Arial", Font. ITALIC ) // OK


Please see org.intellij.lang.annotations.MagicConstant annotation description for details.