Skip to content

Commit ea740a8

Browse files
committed
Fix long lines
1 parent c78b163 commit ea740a8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/run-pass/c-stack-returning-int64.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,6 @@ fn atoll(s: str) -> i64 {
1616

1717
fn main() {
1818
assert atol("1024") * 10 == atol("10240");
19-
assert (atoll("11111111111111111") * 10i64) == atoll("111111111111111110");
19+
assert (atoll("11111111111111111") * 10i64)
20+
== atoll("111111111111111110");
2021
}

0 commit comments

Comments
 (0)