about summary refs log tree commit diff
path: root/src/test/ui/suggestions/fn-to-method-deeply-nested.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/suggestions/fn-to-method-deeply-nested.rs')
-rw-r--r--src/test/ui/suggestions/fn-to-method-deeply-nested.rs13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/test/ui/suggestions/fn-to-method-deeply-nested.rs b/src/test/ui/suggestions/fn-to-method-deeply-nested.rs
deleted file mode 100644
index 58ee3d6409a..00000000000
--- a/src/test/ui/suggestions/fn-to-method-deeply-nested.rs
+++ /dev/null
@@ -1,13 +0,0 @@
-fn main() -> Result<(), ()> {
-    a(b(c(d(e(
-        //~^ ERROR cannot find function `a` in this scope
-        //~| ERROR cannot find function `b` in this scope
-        //~| ERROR cannot find function `c` in this scope
-        //~| ERROR cannot find function `d` in this scope
-        //~| ERROR cannot find function `e` in this scope
-        z????????????????????????????????????????????????????????????????????????????????????????
-        ?????????????????????????????????????????????????????????????????????????????????????????
-        ??????????????????????????????????????????????????????????????????
-        //~^^^ ERROR cannot find value `z` in this scope
-    )))))
-}