about summary refs log tree commit diff
path: root/tests/ui/resolve/suggest-path-for-tuple-struct.stderr
diff options
context:
space:
mode:
authorxizheyin <xizheyin@smail.nju.edu.cn>2025-06-29 15:37:28 +0800
committerxizheyin <xizheyin@smail.nju.edu.cn>2025-07-03 23:11:57 +0800
commit25ab022f2951318e8ffdec2d8566c3a7d164e00d (patch)
treed780e2c6ae40cbeec101760fb27946b99cec73ce /tests/ui/resolve/suggest-path-for-tuple-struct.stderr
parentf19142044f270760ce0ebc03b2c3a44217d8703d (diff)
downloadrust-25ab022f2951318e8ffdec2d8566c3a7d164e00d.tar.gz
rust-25ab022f2951318e8ffdec2d8566c3a7d164e00d.zip
move `tests/ui/resolve/suggest*` to `tests/ui/resolve/suggestions/`
Signed-off-by: xizheyin <xizheyin@smail.nju.edu.cn>
Diffstat (limited to 'tests/ui/resolve/suggest-path-for-tuple-struct.stderr')
-rw-r--r--tests/ui/resolve/suggest-path-for-tuple-struct.stderr27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/ui/resolve/suggest-path-for-tuple-struct.stderr b/tests/ui/resolve/suggest-path-for-tuple-struct.stderr
deleted file mode 100644
index 68a5b550978..00000000000
--- a/tests/ui/resolve/suggest-path-for-tuple-struct.stderr
+++ /dev/null
@@ -1,27 +0,0 @@
-error[E0423]: expected value, found struct `SomeTupleStruct`
-  --> $DIR/suggest-path-for-tuple-struct.rs:22:13
-   |
-LL |     let _ = SomeTupleStruct.new();
-   |             ^^^^^^^^^^^^^^^
-   |
-help: use the path separator to refer to an item
-   |
-LL -     let _ = SomeTupleStruct.new();
-LL +     let _ = SomeTupleStruct::new();
-   |
-
-error[E0423]: expected value, found struct `SomeRegularStruct`
-  --> $DIR/suggest-path-for-tuple-struct.rs:24:13
-   |
-LL |     let _ = SomeRegularStruct.new();
-   |             ^^^^^^^^^^^^^^^^^
-   |
-help: use the path separator to refer to an item
-   |
-LL -     let _ = SomeRegularStruct.new();
-LL +     let _ = SomeRegularStruct::new();
-   |
-
-error: aborting due to 2 previous errors
-
-For more information about this error, try `rustc --explain E0423`.