mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
12 lines
286 B
Rust
12 lines
286 B
Rust
pub fn foo(num: i32) -> i32 {
|
|
let foo: i32::from_be(num);
|
|
//~^ ERROR expected type, found local variable `num`
|
|
//~| ERROR parenthesized type parameters may only be used with a `Fn` trait
|
|
//~| ERROR ambiguous associated type
|
|
foo
|
|
}
|
|
|
|
fn main() {
|
|
let _ = foo(42);
|
|
}
|