]> git.lizzy.rs Git - rust.git/commitdiff
Add `run-rustfix` to tests/ui/issues/issue-92741.rs
authorCastilloDel <delcastillodelarosadaniel@gmail.com>
Mon, 6 Feb 2023 14:33:54 +0000 (15:33 +0100)
committerCastilloDel <delcastillodelarosadaniel@gmail.com>
Mon, 6 Feb 2023 14:34:47 +0000 (15:34 +0100)
src/tools/tidy/src/ui_tests.rs
tests/ui/issues/issue-92741.fixed [new file with mode: 0644]
tests/ui/issues/issue-92741.rs
tests/ui/issues/issue-92741.stderr

index ba20c77a7d16338fbbed672232e4c2c6bf122ef1..83551a1d820abe0c5c30ce395dd968100f813638 100644 (file)
@@ -10,7 +10,7 @@
 const ENTRY_LIMIT: usize = 1000;
 // FIXME: The following limits should be reduced eventually.
 const ROOT_ENTRY_LIMIT: usize = 939;
-const ISSUES_ENTRY_LIMIT: usize = 2000;
+const ISSUES_ENTRY_LIMIT: usize = 2001;
 
 fn check_entries(path: &Path, bad: &mut bool) {
     for dir in Walk::new(&path.join("ui")) {
diff --git a/tests/ui/issues/issue-92741.fixed b/tests/ui/issues/issue-92741.fixed
new file mode 100644 (file)
index 0000000..d07aeb6
--- /dev/null
@@ -0,0 +1,13 @@
+// run-rustfix
+fn main() {}
+fn _foo() -> bool {
+    if true { true } else { false }
+}
+
+fn _bar() -> bool {
+    if true { true } else { false }
+}
+
+fn _baz() -> bool {
+    if true { true } else { false }
+}
index 4e18918c1cf0992205270223fe2f3c9df1ebdeb1..413d5bf047853a1fb056e8557b70b43d1570318c 100644 (file)
@@ -1,16 +1,17 @@
+// run-rustfix
 fn main() {}
-fn foo() -> bool {
-    &  //~ ERROR 3:5: 5:36: mismatched types [E0308]
+fn _foo() -> bool {
+    &  //~ ERROR 4:5: 6:36: mismatched types [E0308]
     mut
     if true { true } else { false }
 }
 
-fn bar() -> bool {
-    &  //~ ERROR 9:5: 10:40: mismatched types [E0308]
+fn _bar() -> bool {
+    &  //~ ERROR 10:5: 11:40: mismatched types [E0308]
     mut if true { true } else { false }
 }
 
-fn baz() -> bool {
-    & mut //~ ERROR 14:5: 15:36: mismatched types [E0308]
+fn _baz() -> bool {
+    & mut //~ ERROR 15:5: 16:36: mismatched types [E0308]
     if true { true } else { false }
 }
index 7716a10cde0cd7d3f2e923b5c3d0c6c6ff634e2e..49315e7a8bf6bc9ae748acc46965d414f02825fe 100644 (file)
@@ -1,8 +1,8 @@
 error[E0308]: mismatched types
-  --> $DIR/issue-92741.rs:3:5
+  --> $DIR/issue-92741.rs:4:5
    |
-LL |   fn foo() -> bool {
-   |               ---- expected `bool` because of return type
+LL |   fn _foo() -> bool {
+   |                ---- expected `bool` because of return type
 LL | /     &
 LL | |     mut
 LL | |     if true { true } else { false }
@@ -15,10 +15,10 @@ LL -     mut
    |
 
 error[E0308]: mismatched types
-  --> $DIR/issue-92741.rs:9:5
+  --> $DIR/issue-92741.rs:10:5
    |
-LL |   fn bar() -> bool {
-   |               ---- expected `bool` because of return type
+LL |   fn _bar() -> bool {
+   |                ---- expected `bool` because of return type
 LL | /     &
 LL | |     mut if true { true } else { false }
    | |_______________________________________^ expected `bool`, found `&mut bool`
@@ -31,10 +31,10 @@ LL +     if true { true } else { false }
    |
 
 error[E0308]: mismatched types
-  --> $DIR/issue-92741.rs:14:5
+  --> $DIR/issue-92741.rs:15:5
    |
-LL |   fn baz() -> bool {
-   |               ---- expected `bool` because of return type
+LL |   fn _baz() -> bool {
+   |                ---- expected `bool` because of return type
 LL | /     & mut
 LL | |     if true { true } else { false }
    | |___________________________________^ expected `bool`, found `&mut bool`