about summary refs log tree commit diff
path: root/tests/ui/specialization/defaultimpl/allowed-cross-crate.rs
blob: 697a62ca547f2de5ea7fd357f5f1d118ea35a751 (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() { }