summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/issue-104086-suggest-let.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/suggestions/issue-104086-suggest-let.rs')
-rw-r--r--src/test/ui/suggestions/issue-104086-suggest-let.rs30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/test/ui/suggestions/issue-104086-suggest-let.rs b/src/test/ui/suggestions/issue-104086-suggest-let.rs
deleted file mode 100644
index d22ad27d0..000000000
--- a/src/test/ui/suggestions/issue-104086-suggest-let.rs
+++ /dev/null
@@ -1,30 +0,0 @@
-fn main() {
- x = x = x;
- //~^ ERROR cannot find value `x` in this scope
- //~| ERROR cannot find value `x` in this scope
- //~| ERROR cannot find value `x` in this scope
-
- x = y = y = y;
- //~^ ERROR cannot find value `y` in this scope
- //~| ERROR cannot find value `y` in this scope
- //~| ERROR cannot find value `y` in this scope
- //~| ERROR cannot find value `x` in this scope
-
- x = y = y;
- //~^ ERROR cannot find value `x` in this scope
- //~| ERROR cannot find value `y` in this scope
- //~| ERROR cannot find value `y` in this scope
-
- x = x = y;
- //~^ ERROR cannot find value `x` in this scope
- //~| ERROR cannot find value `x` in this scope
- //~| ERROR cannot find value `y` in this scope
-
- x = x; // will suggest add `let`
- //~^ ERROR cannot find value `x` in this scope
- //~| ERROR cannot find value `x` in this scope
-
- x = y // will suggest add `let`
- //~^ ERROR cannot find value `x` in this scope
- //~| ERROR cannot find value `y` in this scope
-}