rustfmt-core 0.4.0

A core library of rustfmt
1
2
3
4
5
6
7
8
9
10
// Test for issue #1255
// Default annotation incorrectly removed on associated types
#![feature(specialization)]

trait Trait {
    type Type;
}
impl<T> Trait for T {
    default type Type = u64; // 'default' should not be removed
}