toml-rs/test-suite/tests/valid/unicode-escape.toml
Claudio Bley 96ca73e130 Treat unicode hex digits case-insensitively
In Rust >= 1.24.0 we could have used `char::is_ascii_hexdigit`, but to keep
compatiblity with older versions, `char::is_digit(16)` is used.

Fixes #240.
2018-05-09 22:18:14 +02:00

7 lines
130 B
TOML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

answer1 = "\u000B"
answer4 = "\u03B4α"
answer8 = "\U000003B4β"
answer9 = "\uc0de"
answer10 = "\u03b4α"
answer11 = "\U0000abc1"