mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
16 lines
283 B
Rust
16 lines
283 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
|
|
};
|
|
}
|