mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 20:35:53 +00:00
14 lines
180 B
Rust
14 lines
180 B
Rust
//@ run-pass
|
|
|
|
#![allow(dead_code)]
|
|
|
|
pub fn main() {
|
|
#[derive(Debug)]
|
|
struct Foo {
|
|
foo: isize,
|
|
}
|
|
|
|
let f = Foo { foo: 10 };
|
|
let _ = format!("{:?}", f);
|
|
}
|