mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-01 03:03:40 +00:00
11 lines
234 B
Rust
11 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
|
||
|
}
|