...
This noncompliant code example is morally equivalent similar to the previous noncompliant code example. However, instead of calling a function directly, this code calls an overloaded operator<<()
. Overloaded operators are equivalent to a function call and have the same restrictions regarding the sequencing of the function call arguments. Consequently, this noncompliant code example has undefined behavior.
...