diff options
| author | Tobias Bucher <tobiasbucher5991@gmail.com> | 2015-01-25 22:05:03 +0100 |
|---|---|---|
| committer | Tobias Bucher <tobiasbucher5991@gmail.com> | 2015-01-30 04:38:54 +0100 |
| commit | 7f64fe4e27555c256cb228feb05d4181a2287125 (patch) | |
| tree | c1fd374d345905c7c4c9b1e7df160d3394edbec5 /src/test/debuginfo/multiple-functions.rs | |
| parent | 52c74e63dacd49017b19330e0cbecbac0a3fe62e (diff) | |
| download | rust-7f64fe4e27555c256cb228feb05d4181a2287125.tar.gz rust-7f64fe4e27555c256cb228feb05d4181a2287125.zip | |
Remove all `i` suffixes
Diffstat (limited to 'src/test/debuginfo/multiple-functions.rs')
| -rw-r--r-- | src/test/debuginfo/multiple-functions.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/debuginfo/multiple-functions.rs b/src/test/debuginfo/multiple-functions.rs index ef7c4ce2045..00698ae1dfb 100644 --- a/src/test/debuginfo/multiple-functions.rs +++ b/src/test/debuginfo/multiple-functions.rs @@ -48,18 +48,18 @@ #![omit_gdb_pretty_printer_section] fn function_one() { - let a = 10101i; + let a = 10101; zzz(); // #break } fn function_two() { - let b = 20202i; + let b = 20202; zzz(); // #break } fn function_three() { - let c = 30303i; + let c = 30303; zzz(); // #break } |
