summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/suggest-let-for-assignment.fixed
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/suggestions/suggest-let-for-assignment.fixed')
-rw-r--r--src/test/ui/suggestions/suggest-let-for-assignment.fixed17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/test/ui/suggestions/suggest-let-for-assignment.fixed b/src/test/ui/suggestions/suggest-let-for-assignment.fixed
deleted file mode 100644
index 3a25e25ee..000000000
--- a/src/test/ui/suggestions/suggest-let-for-assignment.fixed
+++ /dev/null
@@ -1,17 +0,0 @@
-// run-rustfix
-
-fn main() {
- let demo = 1; //~ ERROR cannot find value `demo` in this scope
- dbg!(demo); //~ ERROR cannot find value `demo` in this scope
-
- let x = "x"; //~ ERROR cannot find value `x` in this scope
- println!("x: {}", x); //~ ERROR cannot find value `x` in this scope
-
- if x == "x" {
- //~^ ERROR cannot find value `x` in this scope
- println!("x is 1");
- }
-
- let y = 1 + 2; //~ ERROR cannot find value `y` in this scope
- println!("y: {}", y); //~ ERROR cannot find value `y` in this scope
-}