blob: 2d4633844a9feb5102449026aa1f1dd4e8624a96 [file] [log] [blame]
// 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
}