rust/tests/target/issue-1255.rs
2018-03-02 15:07:13 +13:00

10 lines
234 B
Rust

// 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
}