Test for #1255
Default annotation incorrectly removed on associated type.
This commit is contained in:
parent
7ad352239a
commit
4f91f02ad1
10
tests/target/issue-1255.rs
Normal file
10
tests/target/issue-1255.rs
Normal file
@ -0,0 +1,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
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user