mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-21 01:18:45 +00:00
12 lines
194 B
Rust
12 lines
194 B
Rust
// compile-flags: --crate-type=lib
|
|
|
|
// pp-exact
|
|
|
|
fn f(v: &[isize]) -> isize {
|
|
let mut n = 0;
|
|
for e in v {
|
|
n = *e; // This comment once triggered pretty printer bug
|
|
}
|
|
n
|
|
}
|