2020-07-02 14:32:12 +09:00
|
|
|
// run-rustfix
|
|
|
|
|
|
|
|
pub fn f() -> String { //~ ERROR mismatched types
|
2016-04-03 22:10:21 +02:00
|
|
|
0u8;
|
2017-12-10 23:29:24 +03:00
|
|
|
"bla".to_string();
|
2016-04-03 22:10:21 +02:00
|
|
|
}
|
|
|
|
|
2020-07-02 14:32:12 +09:00
|
|
|
pub fn g() -> String { //~ ERROR mismatched types
|
2016-04-04 13:53:04 +02:00
|
|
|
"this won't work".to_string();
|
2017-12-10 23:29:24 +03:00
|
|
|
"removeme".to_string();
|
2016-04-04 13:53:04 +02:00
|
|
|
}
|
|
|
|
|
2021-10-14 13:28:28 -05:00
|
|
|
pub fn macro_tests() -> u32 { //~ ERROR mismatched types
|
|
|
|
macro_rules! mac {
|
|
|
|
() => (1);
|
|
|
|
}
|
|
|
|
mac!();
|
|
|
|
}
|
|
|
|
|
2016-04-03 22:10:21 +02:00
|
|
|
fn main() {}
|