]> git.lizzy.rs Git - rust.git/blob - src/test/run-make-fulldeps/pretty-expanded/input.rs
Rollup merge of #99583 - shepmaster:provider-plus-plus, r=yaahc
[rust.git] / src / test / run-make-fulldeps / pretty-expanded / input.rs
1 #[crate_type="lib"]
2
3 // #13544
4
5 extern crate rustc_serialize;
6
7 #[derive(RustcEncodable)] pub struct A;
8 #[derive(RustcEncodable)] pub struct B(isize);
9 #[derive(RustcEncodable)] pub struct C { x: isize }
10 #[derive(RustcEncodable)] pub enum D {}
11 #[derive(RustcEncodable)] pub enum E { y }
12 #[derive(RustcEncodable)] pub enum F { z(isize) }