Specifying a module-name
beginning with an identifier
consisting of std followed by zero or more digits,
or containing a reserved identifier ([lex.token])
in a module-declaration
is ill-formed, no diagnostic required.
[Example 1: module std; // IFNDR, std is not allowed at the beginningmodulemodule; // IFNDR, module is a reserved identifiermodule std0; // IFNDR, std followed by digits is not allowed at the beginningexportmodule _Test; // IFNDR, _Test is a reserved identifierexportmodule te__st; // IFNDR, te__st is a reserved identifier — end example]