A call of a literal is a valid syntax, but it would cause a runtime error.
Examples of incorrect code for this rule:
/*eslint no-literal-call: "error"*/
123()
"hello"()
Examples of correct code for this rule:
/*eslint no-literal-call: "error"*/
foo()
;(function () {})()