Remove `tests/run-make-fulldeps/pretty-expanded`

This was an ancient regression test for #12685, caused by `-Zunpretty=expanded`
crashing on certain code produced by `#[derive(RustcEncodable)]`.
This commit is contained in:
Zalathar 2024-06-04 19:55:29 +10:00
parent bc33782c23
commit c7491a9885
2 changed files with 0 additions and 29 deletions

View File

@ -1,4 +0,0 @@
include ../../run-make/tools.mk
all:
$(RUSTC) -o $(TMPDIR)/input.expanded.rs -Zunpretty=expanded input.rs

View File

@ -1,25 +0,0 @@
// #13544
#[derive(Debug)]
pub struct A;
#[derive(Debug)]
pub struct B(isize);
#[derive(Debug)]
pub struct C {
x: isize,
}
#[derive(Debug)]
pub enum D {}
#[derive(Debug)]
pub enum E {
y,
}
#[derive(Debug)]
pub enum F {
z(isize),
}