summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/issue-81098.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/suggestions/issue-81098.rs')
-rw-r--r--src/test/ui/suggestions/issue-81098.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/test/ui/suggestions/issue-81098.rs b/src/test/ui/suggestions/issue-81098.rs
new file mode 100644
index 000000000..a601b5866
--- /dev/null
+++ b/src/test/ui/suggestions/issue-81098.rs
@@ -0,0 +1,13 @@
+// Don't suggest removing a semicolon if the last statement isn't an expression with semicolon
+// (#81098)
+fn wat() -> impl core::fmt::Display { //~ ERROR: `()` doesn't implement `std::fmt::Display`
+ fn why() {}
+}
+
+// Do it if the last statement is an expression with semicolon
+// (#54771)
+fn ok() -> impl core::fmt::Display { //~ ERROR: `()` doesn't implement `std::fmt::Display`
+ 1;
+}
+
+fn main() {}