summaryrefslogtreecommitdiffstats
path: root/tests/ui/specialization/specialization-allowed-cross-crate.rs
blob: 5d67160eb96ad8f2114c424ee0f778fa535818f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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() { }