diff options
| author | bors <bors@rust-lang.org> | 2014-06-29 19:46:46 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-06-29 19:46:46 +0000 |
| commit | ff94f867d29a90ab59060c10a62f65994776a8c4 (patch) | |
| tree | 2a1eb17ef28c64da19f6b3248217d113e6a2b8bd /src/libcoretest/raw.rs | |
| parent | cc5663ad55f3dc3a642c8e2c4043900783dcc9f8 (diff) | |
| parent | a5bb0a3a4574af88add700ace7aefc37172fa7a5 (diff) | |
| download | rust-ff94f867d29a90ab59060c10a62f65994776a8c4.tar.gz rust-ff94f867d29a90ab59060c10a62f65994776a8c4.zip | |
auto merge of #15234 : pcwalton/rust/integer-fallback-and-casts, r=alexcrichton
This will break code that looks like:
let mut x = 0;
while ... {
x += 1;
}
println!("{}", x);
Change that code to:
let mut x = 0i;
while ... {
x += 1;
}
println!("{}", x);
Closes #15201.
[breaking-change]
r? @alexcrichton
Diffstat (limited to 'src/libcoretest/raw.rs')
0 files changed, 0 insertions, 0 deletions
