mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
27 lines
455 B
Rust
27 lines
455 B
Rust
// run-pass
|
|
#![allow(dead_code)]
|
|
#![allow(unused_variables)]
|
|
#![allow(unused_imports)]
|
|
|
|
// aux-build:go_trait.rs
|
|
|
|
#![feature(specialization)] //~ WARN the feature `specialization` is incomplete
|
|
|
|
extern crate go_trait;
|
|
|
|
use go_trait::{Go,GoMut};
|
|
use std::fmt::Debug;
|
|
use std::default::Default;
|
|
|
|
struct MyThingy;
|
|
|
|
impl Go for MyThingy {
|
|
fn go(&self, arg: isize) { }
|
|
}
|
|
|
|
impl GoMut for MyThingy {
|
|
fn go_mut(&mut self, arg: isize) { }
|
|
}
|
|
|
|
fn main() { }
|