We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40fdfb3 commit bd1a894Copy full SHA for bd1a894
ui/src/sandbox.rs
@@ -1625,8 +1625,8 @@ mod test {
1625
let _singleton = one_test_at_a_time();
1626
let code = r#"
1627
fn main() {
1628
- let megabyte = 1024 * 1024;
1629
- let mut big = vec![0u8; 384 * megabyte];
+ let gigabyte = 1024 * 1024 * 1024;
+ let mut big = vec![0u8; 1 * gigabyte];
1630
for i in &mut big { *i += 1; }
1631
}
1632
"#;
0 commit comments