]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/fn-colon-return-type.rs
Account for ADT bodies and struct expressions
[rust.git] / src / test / ui / parser / fn-colon-return-type.rs
1 fn foo(x: i32): i32 {
2 //~^ ERROR return types are denoted using `->`
3     x
4 }
5
6 fn main() {}