| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-10-21 | Move parse-fail tests to UI | Vadim Petrochenkov | -23/+0 | |
| 2016-03-30 | fix compile-fail and parse-fail tests by blindly opting back into | Felix S. Klock II | -0/+2 | |
| parser recovery (so that expected errors match up) I'm opting into parser recovery in all these cases out of expediency, not because the error messages you get with recovery enabled are actually all that usable in all cases listed. | ||||
| 2015-03-31 | Lex binary and octal literals more eagerly. | Huon Wilson | -0/+21 | |
| 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 | ||||
