commit | f5479a9c21b0ca9d80bc37521391a7d7c6982eee | [log] [tgz] |
---|---|---|
author | Alex Crichton <alex@alexcrichton.com> | Thu May 17 10:56:26 2018 -0700 |
committer | Alex Crichton <alex@alexcrichton.com> | Thu May 17 10:56:26 2018 -0700 |
tree | 51615f549ceaa961e9e4448fd42e74183c9eea0d | |
parent | ca3dcad2f575e9106f1f0459845d0b8aa489bc58 [diff] [blame] |
Parse `_` as an ident Technically a breaking change but 0.4 is so new I'm tempted to leave this as 0.4.1 Closes #87
diff --git a/tests/test.rs b/tests/test.rs index a3c53ec..673a35f 100644 --- a/tests/test.rs +++ b/tests/test.rs
@@ -113,6 +113,7 @@ ", ); roundtrip("'a"); + roundtrip("'_"); roundtrip("'static"); roundtrip("'\\u{10__FFFF}'"); roundtrip("\"\\u{10_F0FF__}foo\\u{1_0_0_0__}\"");