about summary refs log tree commit diff
path: root/src/test/ui/dyn-drop
diff options
context:
space:
mode:
authorAlbert Larsan <74931857+albertlarsan68@users.noreply.github.com>2023-01-05 09:13:28 +0100
committerAlbert Larsan <74931857+albertlarsan68@users.noreply.github.com>2023-01-11 09:32:08 +0000
commitcf2dff2b1e3fa55fa5415d524200070d0d7aacfe (patch)
tree40a88d9a46aaf3e8870676eb2538378b75a263eb /src/test/ui/dyn-drop
parentca855e6e42787ecd062d81d53336fe6788ef51a9 (diff)
downloadrust-cf2dff2b1e3fa55fa5415d524200070d0d7aacfe.tar.gz
rust-cf2dff2b1e3fa55fa5415d524200070d0d7aacfe.zip
Move /src/test to /tests
Diffstat (limited to 'src/test/ui/dyn-drop')
-rw-r--r--src/test/ui/dyn-drop/dyn-drop.rs16
-rw-r--r--src/test/ui/dyn-drop/dyn-drop.stderr38
2 files changed, 0 insertions, 54 deletions
diff --git a/src/test/ui/dyn-drop/dyn-drop.rs b/src/test/ui/dyn-drop/dyn-drop.rs
deleted file mode 100644
index e1668a3f188..00000000000
--- a/src/test/ui/dyn-drop/dyn-drop.rs
+++ /dev/null
@@ -1,16 +0,0 @@
-#![deny(dyn_drop)]
-#![allow(bare_trait_objects)]
-fn foo(_: Box<dyn Drop>) {} //~ ERROR
-fn bar(_: &dyn Drop) {} //~ERROR
-fn baz(_: *mut Drop) {} //~ ERROR
-struct Foo {
-  _x: Box<dyn Drop> //~ ERROR
-}
-trait Bar {
-  type T: ?Sized;
-}
-struct Baz {}
-impl Bar for Baz {
-  type T = dyn Drop; //~ ERROR
-}
-fn main() {}
diff --git a/src/test/ui/dyn-drop/dyn-drop.stderr b/src/test/ui/dyn-drop/dyn-drop.stderr
deleted file mode 100644
index 1b1dbc4d12d..00000000000
--- a/src/test/ui/dyn-drop/dyn-drop.stderr
+++ /dev/null
@@ -1,38 +0,0 @@
-error: types that do not implement `Drop` can still have drop glue, consider instead using `std::mem::needs_drop` to detect whether a type is trivially dropped
-  --> $DIR/dyn-drop.rs:3:19
-   |
-LL | fn foo(_: Box<dyn Drop>) {}
-   |                   ^^^^
-   |
-note: the lint level is defined here
-  --> $DIR/dyn-drop.rs:1:9
-   |
-LL | #![deny(dyn_drop)]
-   |         ^^^^^^^^
-
-error: types that do not implement `Drop` can still have drop glue, consider instead using `std::mem::needs_drop` to detect whether a type is trivially dropped
-  --> $DIR/dyn-drop.rs:4:16
-   |
-LL | fn bar(_: &dyn Drop) {}
-   |                ^^^^
-
-error: types that do not implement `Drop` can still have drop glue, consider instead using `std::mem::needs_drop` to detect whether a type is trivially dropped
-  --> $DIR/dyn-drop.rs:5:16
-   |
-LL | fn baz(_: *mut Drop) {}
-   |                ^^^^
-
-error: types that do not implement `Drop` can still have drop glue, consider instead using `std::mem::needs_drop` to detect whether a type is trivially dropped
-  --> $DIR/dyn-drop.rs:7:15
-   |
-LL |   _x: Box<dyn Drop>
-   |               ^^^^
-
-error: types that do not implement `Drop` can still have drop glue, consider instead using `std::mem::needs_drop` to detect whether a type is trivially dropped
-  --> $DIR/dyn-drop.rs:14:16
-   |
-LL |   type T = dyn Drop;
-   |                ^^^^
-
-error: aborting due to 5 previous errors
-