summaryrefslogtreecommitdiffstats
path: root/tests/ui/privacy/suggest-box-new.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-19 09:26:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-19 09:26:03 +0000
commit9918693037dce8aa4bb6f08741b6812923486c18 (patch)
tree21d2b40bec7e6a7ea664acee056eb3d08e15a1cf /tests/ui/privacy/suggest-box-new.stderr
parentReleasing progress-linux version 1.75.0+dfsg1-5~progress7.99u1. (diff)
downloadrustc-9918693037dce8aa4bb6f08741b6812923486c18.tar.xz
rustc-9918693037dce8aa4bb6f08741b6812923486c18.zip
Merging upstream version 1.76.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/privacy/suggest-box-new.stderr')
-rw-r--r--tests/ui/privacy/suggest-box-new.stderr90
1 files changed, 85 insertions, 5 deletions
diff --git a/tests/ui/privacy/suggest-box-new.stderr b/tests/ui/privacy/suggest-box-new.stderr
index ed7fa0364..8b01e8c3c 100644
--- a/tests/ui/privacy/suggest-box-new.stderr
+++ b/tests/ui/privacy/suggest-box-new.stderr
@@ -1,5 +1,29 @@
+error[E0423]: expected function, tuple struct or tuple variant, found struct `std::collections::HashMap`
+ --> $DIR/suggest-box-new.rs:14:13
+ |
+LL | let _ = std::collections::HashMap();
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ --> $SRC_DIR/std/src/collections/hash/map.rs:LL:COL
+ |
+ = note: `std::collections::HashMap` defined here
+ |
+help: you might have meant to use an associated function to build this type
+ |
+LL | let _ = std::collections::HashMap::new();
+ | ~~~~~~~
+LL | let _ = std::collections::HashMap::with_capacity(_);
+ | ~~~~~~~~~~~~~~~~~~
+LL | let _ = std::collections::HashMap::with_hasher(_);
+ | ~~~~~~~~~~~~~~~~
+LL | let _ = std::collections::HashMap::with_capacity_and_hasher(_, _);
+ | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+help: consider using the `Default` trait
+ |
+LL | let _ = <std::collections::HashMap as std::default::Default>::default();
+ | + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
error[E0423]: cannot initialize a tuple struct which contains private fields
- --> $DIR/suggest-box-new.rs:9:19
+ --> $DIR/suggest-box-new.rs:8:19
|
LL | wtf: Some(Box(U {
| ^^^
@@ -10,11 +34,67 @@ note: constructor is not visible here due to private fields
= note: private field
|
= note: private field
-help: you might have meant to use the `new` associated function
+help: you might have meant to use an associated function to build this type
+ |
+LL | wtf: Some(Box::new(_)),
+ | ~~~~~~~~
+LL | wtf: Some(Box::new_uninit()),
+ | ~~~~~~~~~~~~~~
+LL | wtf: Some(Box::new_zeroed()),
+ | ~~~~~~~~~~~~~~
+LL | wtf: Some(Box::new_in(_, _)),
+ | ~~~~~~~~~~~~~~
+ and 10 other candidates
+help: consider using the `Default` trait
+ |
+LL | wtf: Some(<Box as std::default::Default>::default()),
+ | + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+error: cannot construct `HashMap<_, _, _>` with struct literal syntax due to private fields
+ --> $DIR/suggest-box-new.rs:16:13
+ |
+LL | let _ = std::collections::HashMap {};
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^
+ |
+ = note: private field `base` that was not provided
+help: you might have meant to use an associated function to build this type
+ |
+LL | let _ = std::collections::HashMap::new();
+ | ~~~~~~~
+LL | let _ = std::collections::HashMap::with_capacity(_);
+ | ~~~~~~~~~~~~~~~~~~
+LL | let _ = std::collections::HashMap::with_hasher(_);
+ | ~~~~~~~~~~~~~~~~
+LL | let _ = std::collections::HashMap::with_capacity_and_hasher(_, _);
+ | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+help: consider using the `Default` trait
+ |
+LL | let _ = <std::collections::HashMap as std::default::Default>::default();
+ | + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+error: cannot construct `Box<_, _>` with struct literal syntax due to private fields
+ --> $DIR/suggest-box-new.rs:18:13
+ |
+LL | let _ = Box {};
+ | ^^^
+ |
+ = note: private fields `0` and `1` that were not provided
+help: you might have meant to use an associated function to build this type
+ |
+LL | let _ = Box::new(_);
+ | ~~~~~~~~
+LL | let _ = Box::new_uninit();
+ | ~~~~~~~~~~~~~~
+LL | let _ = Box::new_zeroed();
+ | ~~~~~~~~~~~~~~
+LL | let _ = Box::new_in(_, _);
+ | ~~~~~~~~~~~~~~
+ and 10 other candidates
+help: consider using the `Default` trait
|
-LL | wtf: Some(Box::new(U {
- | +++++
+LL | let _ = <Box as std::default::Default>::default();
+ | + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-error: aborting due to previous error
+error: aborting due to 4 previous errors
For more information about this error, try `rustc --explain E0423`.