summary refs log tree commit diff
path: root/src/test/run-make-fulldeps/pretty-expanded/input.rs
blob: 3cbabc5b460614b85bc15288dc2e62ebff00f895 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#[crate_type="lib"]

// #13544

extern crate serialize as rustc_serialize;

#[derive(RustcEncodable)] pub struct A;
#[derive(RustcEncodable)] pub struct B(isize);
#[derive(RustcEncodable)] pub struct C { x: isize }
#[derive(RustcEncodable)] pub enum D {}
#[derive(RustcEncodable)] pub enum E { y }
#[derive(RustcEncodable)] pub enum F { z(isize) }