mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
21 lines
354 B
Rust
21 lines
354 B
Rust
//@ run-rustfix
|
|
|
|
pub fn f() -> String { //~ ERROR mismatched types
|
|
0u8;
|
|
"bla".to_string();
|
|
}
|
|
|
|
pub fn g() -> String { //~ ERROR mismatched types
|
|
"this won't work".to_string();
|
|
"removeme".to_string();
|
|
}
|
|
|
|
pub fn macro_tests() -> u32 { //~ ERROR mismatched types
|
|
macro_rules! mac {
|
|
() => (1);
|
|
}
|
|
mac!();
|
|
}
|
|
|
|
fn main() {}
|