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
|
||
|
};
|
||
|
}
|