mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
20 lines
267 B
Rust
20 lines
267 B
Rust
// run-pass
|
|
|
|
#![feature(specialization)] //~ WARN the feature `specialization` is incomplete
|
|
|
|
pub trait Foo {
|
|
fn foo();
|
|
}
|
|
|
|
impl Foo for i32 {}
|
|
impl Foo for i64 {}
|
|
impl<T> Foo for T {
|
|
fn foo() {}
|
|
}
|
|
|
|
fn main() {
|
|
i32::foo();
|
|
i64::foo();
|
|
u8::foo();
|
|
}
|