You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An identifier is any nonempty Unicode[^non_ascii_idents] string of the following form:
8
+
An identifier is any nonempty ASCII[^non_ascii_idents] string of the following form:
9
+
10
+
Either
11
+
12
+
* The first character is a letter
13
+
* The remaining characters are alphanumeric or `_`
14
+
15
+
Or
16
+
17
+
* The first character is `_`
18
+
* The identifier is more than one character, `_` alone is not an identifier
19
+
* The remaining characters are alphanumeric or `_`
20
+
21
+
[keywords]: keywords.html
22
+
23
+
[^non_ascii_idents] Non-ASCII characters in identifiers are currently feature-gated. See [issue #28979](https://github.com/rust-lang/rust/issues/28979).
24
+
25
+
<!-- When non-ascii identifiers are actually supported:
0 commit comments