summaryrefslogtreecommitdiffstats
path: root/tests/ui/privacy/suggest-box-new.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/privacy/suggest-box-new.rs')
-rw-r--r--tests/ui/privacy/suggest-box-new.rs19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/ui/privacy/suggest-box-new.rs b/tests/ui/privacy/suggest-box-new.rs
new file mode 100644
index 000000000..7125285fc
--- /dev/null
+++ b/tests/ui/privacy/suggest-box-new.rs
@@ -0,0 +1,19 @@
+#![allow(dead_code)]
+struct U <T> {
+ wtf: Option<Box<U<T>>>,
+ x: T,
+}
+fn main() {
+ U {
+ wtf: Some(Box(U { //~ ERROR cannot initialize a tuple struct which contains private fields
+ wtf: None,
+ x: (),
+ })),
+ x: ()
+ };
+ let _ = std::collections::HashMap();
+ //~^ ERROR expected function, tuple struct or tuple variant, found struct `std::collections::HashMap`
+ let _ = std::collections::HashMap {};
+ //~^ ERROR cannot construct `HashMap<_, _, _>` with struct literal syntax due to private fields
+ let _ = Box {}; //~ ERROR cannot construct `Box<_, _>` with struct literal syntax due to private fields
+}