mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
16 lines
284 B
Rust
16 lines
284 B
Rust
//@ run-rustfix
|
|
#![allow(dead_code)]
|
|
|
|
struct Bravery {
|
|
guts: String,
|
|
brains: String,
|
|
}
|
|
|
|
fn main() {
|
|
let guts = "mettle";
|
|
let _ = Bravery {
|
|
guts: guts.to_string(), //~ ERROR mismatched types
|
|
brains: guts.to_string(), //~ ERROR mismatched types
|
|
};
|
|
}
|