rustfmt tests/run-make-fulldeps/
.
Note: I inserted blank lines between the items in `pretty-expanded/input.rs` because it looked better that way.
This commit is contained in:
parent
5875f3fff3
commit
d161d06241
3 changed files with 30 additions and 9 deletions
|
@ -17,7 +17,6 @@ ignore = [
|
||||||
"/tests/incremental/", # These tests are somewhat sensitive to source code layout.
|
"/tests/incremental/", # These tests are somewhat sensitive to source code layout.
|
||||||
"/tests/pretty/", # These tests are very sensitive to source code layout.
|
"/tests/pretty/", # These tests are very sensitive to source code layout.
|
||||||
"/tests/run-make/translation/test.rs", # This test contains syntax errors.
|
"/tests/run-make/translation/test.rs", # This test contains syntax errors.
|
||||||
"/tests/run-make-fulldeps/",
|
|
||||||
"/tests/run-pass-valgrind/",
|
"/tests/run-pass-valgrind/",
|
||||||
"/tests/rustdoc/",
|
"/tests/rustdoc/",
|
||||||
"/tests/rustdoc-gui/",
|
"/tests/rustdoc-gui/",
|
||||||
|
|
|
@ -27,7 +27,9 @@ use std::any::Any;
|
||||||
struct TheBackend;
|
struct TheBackend;
|
||||||
|
|
||||||
impl CodegenBackend for TheBackend {
|
impl CodegenBackend for TheBackend {
|
||||||
fn locale_resource(&self) -> &'static str { "" }
|
fn locale_resource(&self) -> &'static str {
|
||||||
|
""
|
||||||
|
}
|
||||||
|
|
||||||
fn codegen_crate<'a, 'tcx>(
|
fn codegen_crate<'a, 'tcx>(
|
||||||
&self,
|
&self,
|
||||||
|
@ -62,7 +64,10 @@ impl CodegenBackend for TheBackend {
|
||||||
codegen_results: CodegenResults,
|
codegen_results: CodegenResults,
|
||||||
outputs: &OutputFilenames,
|
outputs: &OutputFilenames,
|
||||||
) -> Result<(), ErrorGuaranteed> {
|
) -> Result<(), ErrorGuaranteed> {
|
||||||
use rustc_session::{config::{CrateType, OutFileName}, output::out_filename};
|
use rustc_session::{
|
||||||
|
config::{CrateType, OutFileName},
|
||||||
|
output::out_filename,
|
||||||
|
};
|
||||||
use std::io::Write;
|
use std::io::Write;
|
||||||
let crate_name = codegen_results.crate_info.local_crate_name;
|
let crate_name = codegen_results.crate_info.local_crate_name;
|
||||||
for &crate_type in sess.opts.crate_types.iter() {
|
for &crate_type in sess.opts.crate_types.iter() {
|
||||||
|
|
|
@ -1,8 +1,25 @@
|
||||||
// #13544
|
// #13544
|
||||||
|
|
||||||
#[derive(Debug)] pub struct A;
|
#[derive(Debug)]
|
||||||
#[derive(Debug)] pub struct B(isize);
|
pub struct A;
|
||||||
#[derive(Debug)] pub struct C { x: isize }
|
|
||||||
#[derive(Debug)] pub enum D {}
|
#[derive(Debug)]
|
||||||
#[derive(Debug)] pub enum E { y }
|
pub struct B(isize);
|
||||||
#[derive(Debug)] pub enum F { z(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),
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue