rust-lang/rustfmt

Visual IndentStyle is broken on impl with where clause

Open

#3071 aperta il 30 set 2018

Vedi su GitHub
 (12 commenti) (0 reazioni) (1 assegnatario)Rust (760 fork)batch import
I-poor-formattingUO-indent_stylegood first issueonly-with-option

Metriche repository

Star
 (4893 star)
Metriche merge PR
 (Merge medio 10g 21h) (8 PR mergiate in 30 g)

Descrizione

Test code:

struct A<T>
    where T: Send
{
    x: u32,
}

impl<T> A<T> where T: Send
{
    fn foo() {}
}

The impl block is expected to be formatted as:

impl<T> A<T>
    where T: Send
{
    fn foo() {}
}

Everything is ok for indent_style: "Block".

rustfmt version:

rustfmt 0.99.5-nightly (90692a59 2018-09-26)

Guida contributor