mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 08:18:44 +00:00
21 lines
234 B
Rust
21 lines
234 B
Rust
//@ run-pass
|
|
#![allow(dead_code)]
|
|
#![allow(non_camel_case_types)]
|
|
|
|
|
|
struct cat {
|
|
|
|
name : String,
|
|
|
|
}
|
|
|
|
fn cat(in_name: String) -> cat {
|
|
cat {
|
|
name: in_name
|
|
}
|
|
}
|
|
|
|
pub fn main() {
|
|
let _nyan = cat("nyan".to_string());
|
|
}
|