mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
23 lines
332 B
Rust
23 lines
332 B
Rust
//@ known-bug: #121127
|
|
//@ compile-flags: -Zpolymorphize=on -Zinline-mir=yes
|
|
|
|
#![feature(specialization)]
|
|
|
|
pub trait Foo {
|
|
fn abc() -> u32;
|
|
}
|
|
|
|
pub trait Marker {}
|
|
|
|
impl<T> Foo for T {
|
|
default fn abc(f: fn(&T), t: &T) -> u32 {
|
|
16
|
|
}
|
|
}
|
|
|
|
impl<T: Marker> Foo for T {
|
|
fn def() -> u32 {
|
|
Self::abc()
|
|
}
|
|
}
|