]> git.lizzy.rs Git - rust.git/commitdiff
wip test
authorJane Losare-Lusby <jlusby@yaah.dev>
Thu, 7 Jul 2022 18:50:28 +0000 (18:50 +0000)
committerJane Losare-Lusby <jlusby@yaah.dev>
Fri, 8 Jul 2022 21:18:15 +0000 (21:18 +0000)
src/test/ui-fulldeps/stability-attribute/rustc-encodable-stability.rs [new file with mode: 0644]

diff --git a/src/test/ui-fulldeps/stability-attribute/rustc-encodable-stability.rs b/src/test/ui-fulldeps/stability-attribute/rustc-encodable-stability.rs
new file mode 100644 (file)
index 0000000..072b938
--- /dev/null
@@ -0,0 +1,12 @@
+// edition:2018
+#![allow(deprecated)]
+#![feature(rustc_private)]
+
+extern crate rustc_serialize;
+
+#[derive(RustcDecodable, RustcEncodable)]
+struct ArbitraryTestType {
+
+}
+
+fn main() {}