summaryrefslogtreecommitdiffstats
path: root/src/test/run-make-fulldeps/pretty-expanded/input.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-make-fulldeps/pretty-expanded/input.rs')
-rw-r--r--src/test/run-make-fulldeps/pretty-expanded/input.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/test/run-make-fulldeps/pretty-expanded/input.rs b/src/test/run-make-fulldeps/pretty-expanded/input.rs
new file mode 100644
index 000000000..af3d75b3b
--- /dev/null
+++ b/src/test/run-make-fulldeps/pretty-expanded/input.rs
@@ -0,0 +1,12 @@
+#[crate_type="lib"]
+
+// #13544
+
+extern crate 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) }