Skip to content

Commit 79b5b38

Browse files
committed
don't check invalid byte literal
1 parent 7d887ff commit 79b5b38

File tree

1 file changed

+0
-1
lines changed
  • tests/ui/proc-macro/auxiliary/api

1 file changed

+0
-1
lines changed

tests/ui/proc-macro/auxiliary/api/parse.rs

-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ fn test_parse_literal() {
4848
assert!(".8".parse::<Literal>().is_err());
4949
assert!("0 1".parse::<Literal>().is_err());
5050
assert!("'a".parse::<Literal>().is_err());
51-
assert!("b'❤'".parse::<Literal>().is_err());
5251
assert!(" 0".parse::<Literal>().is_err());
5352
assert!("0 ".parse::<Literal>().is_err());
5453
assert!("/* comment */0".parse::<Literal>().is_err());

0 commit comments

Comments
 (0)