summaryrefslogtreecommitdiffstats
path: root/src/test/ui-fulldeps/rustc_encodable_hygiene.rs
blob: 452110a65e4aa18ac966be2213c89c5b4a921696 (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

#![feature(rustc_private)]

extern crate rustc_macros;
#[allow(dead_code)]
extern crate rustc_serialize;

use rustc_macros::{Decodable, Encodable};

#[derive(Decodable, Encodable, Debug)]
struct A {
    a: String,
}

trait Trait {
    fn encode(&self);
}

impl<T> Trait for T {
    fn encode(&self) {
        unimplemented!()
    }
}

fn main() {}