mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
14 lines
217 B
Rust
14 lines
217 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");
|
|
}
|