diff --git a/src/test/run-pass-fulldeps/custom-derive-partial-eq.stderr b/src/test/run-pass-fulldeps/custom-derive-partial-eq.stderr new file mode 100644 index 00000000000..ba956e4c132 --- /dev/null +++ b/src/test/run-pass-fulldeps/custom-derive-partial-eq.stderr @@ -0,0 +1,6 @@ +warning: `#[derive]` for custom traits is deprecated and will be removed in the future. Prefer using procedural macro custom derive. + --> $DIR/custom-derive-partial-eq.rs:17:10 + | +LL | #[derive(CustomPartialEq)] // Check that this is not a stability error. + | ^^^^^^^^^^^^^^^ + diff --git a/src/test/run-pass-fulldeps/proc-macro/derive-same-struct.stdout b/src/test/run-pass-fulldeps/proc-macro/derive-same-struct.stdout new file mode 100644 index 00000000000..77605de5e33 --- /dev/null +++ b/src/test/run-pass-fulldeps/proc-macro/derive-same-struct.stdout @@ -0,0 +1 @@ +input1: "struct A;"