mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 22:32:31 +00:00
14 lines
218 B
Rust
14 lines
218 B
Rust
//@ run-pass
|
|
|
|
use std::fmt::Display;
|
|
|
|
fn foo(f: impl Display + Clone) -> String {
|
|
let g = f.clone();
|
|
format!("{} + {}", f, g)
|
|
}
|
|
|
|
fn main() {
|
|
let sum = foo(format!("22"));
|
|
assert_eq!(sum, r"22 + 22");
|
|
}
|