| UnicodeDigit} | `'`'` QuotedSymbol {QuotedSymbol} `'`'` ". Does that not mean that e.g. Ⅲ (aka \u2162) - which is part of unicode character class NL - should be a valid identifier? I just tried but the compiler does not like
val Ⅲ = "roman 3"
.
e
ephemient
12/13/2021, 11:52 PM
that's interesting, kotlin doesn't seem to allow it as a identifier part at all.
val _Ⅲ
doesn't work either
n
nkiesel
12/14/2021, 9:20 PM
yes. Seems the language spec is wrong (or the implementation). Do you know the best place to bring that to attention?