]> git.proxmox.com Git - rustc.git/blob - src/test/ui/suggestions/issue-81098.rs
New upstream version 1.51.0+dfsg1
[rustc.git] / src / test / ui / suggestions / issue-81098.rs
1 // Don't suggest removing a semicolon if the last statement isn't an expression with semicolon
2 // (#81098)
3 fn wat() -> impl core::fmt::Display { //~ ERROR: `()` doesn't implement `std::fmt::Display`
4 fn why() {}
5 }
6
7 // Do it if the last statement is an expression with semicolon
8 // (#54771)
9 fn ok() -> impl core::fmt::Display { //~ ERROR: `()` doesn't implement `std::fmt::Display`
10 1;
11 }
12
13 fn main() {}