floating point numbers for real. 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]
10 lines
161 B
Plaintext
10 lines
161 B
Plaintext
digraph block {
|
|
N0[label="entry"];
|
|
N1[label="exit"];
|
|
N2[label="expr 1i"];
|
|
N3[label="block { 1i; }"];
|
|
N0 -> N2;
|
|
N2 -> N3;
|
|
N3 -> N1;
|
|
}
|