summaryrefslogtreecommitdiffstats
path: root/tests/ui/privacy/suggest-box-new.fixed
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/privacy/suggest-box-new.fixed')
-rw-r--r--tests/ui/privacy/suggest-box-new.fixed15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/ui/privacy/suggest-box-new.fixed b/tests/ui/privacy/suggest-box-new.fixed
deleted file mode 100644
index f5ae5c2ab..000000000
--- a/tests/ui/privacy/suggest-box-new.fixed
+++ /dev/null
@@ -1,15 +0,0 @@
-// run-rustfix
-#![allow(dead_code)]
-struct U <T> {
- wtf: Option<Box<U<T>>>,
- x: T,
-}
-fn main() {
- U {
- wtf: Some(Box::new(U { //~ ERROR cannot initialize a tuple struct which contains private fields
- wtf: None,
- x: (),
- })),
- x: ()
- };
-}