rust/src/test
Huon Wilson 606f50c46d Lex binary and octal literals more eagerly.
Previously 0b12 was considered two tokens, 0b1 and 2, as 2 isn't a valid
base 2 digit. This patch changes that to collapse them into one (and
makes `0b12` etc. an error: 2 isn't a valid base 2 digit).

This may break some macro invocations of macros with `tt` (or syntax
extensions) that rely on adjacent digits being separate tokens and hence
is a

[breaking-change]

The fix is to separate the tokens, e.g. `0b12` -> `0b1 2`.

cc https://github.com/rust-lang/rfcs/pull/879
2015-03-31 12:16:42 +11:00
..
auxiliary
bench
codegen
compile-fail Port of pcwalton removal of #[unsafe_destructor] check. 2015-03-29 00:19:19 +01:00
compile-fail-fulldeps
debuginfo Fix some typos 2015-03-28 18:09:51 +03:00
parse-fail Lex binary and octal literals more eagerly. 2015-03-31 12:16:42 +11:00
pretty
run-fail
run-make Fix some typos 2015-03-28 18:09:51 +03:00
run-pass Fix some typos 2015-03-28 18:09:51 +03:00
run-pass-fulldeps
run-pass-valgrind