]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/issue-81098.rs
Rollup merge of #90420 - GuillaumeGomez:rustdoc-internals-feature, r=camelid
[rust.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() {}