1
Fork 0

Bump to 1.33.0

* Update bootstrap compiler
* Update version to 1.33.0
* Remove some `#[cfg(stage0)]` annotations

Actually updating the version number is blocked on updating Cargo
This commit is contained in:
Alex Crichton 2018-12-05 06:42:56 -08:00
parent bd47d6825b
commit cf47a19305
31 changed files with 47 additions and 63 deletions

View file

@ -3493,7 +3493,7 @@ mod tests {
// Helper function for counting indents
fn indents(source: &str) -> usize {
let trimmed = source.trim_left_matches(' ');
let trimmed = source.trim_start_matches(' ');
source.len() - trimmed.len()
}