]> git.proxmox.com Git - rustc.git/blobdiff - src/test/compile-fail/auxiliary/deprecation-lint.rs
New upstream version 1.23.0+dfsg1
[rustc.git] / src / test / compile-fail / auxiliary / deprecation-lint.rs
index ff872efb7bdb1049f44ecad65feb2ae398a59f9c..175102898759b1070569eb05d5e4768eb4f2bb49 100644 (file)
@@ -52,6 +52,24 @@ pub enum Enum {
 #[deprecated(since = "1.0.0", note = "text")]
 pub struct DeprecatedTupleStruct(pub isize);
 
+pub mod nested {
+    #[deprecated(since = "1.0.0", note = "text")]
+    pub struct DeprecatedStruct {
+        pub i: isize
+    }
+
+    #[deprecated(since = "1.0.0", note = "text")]
+    pub struct DeprecatedUnitStruct;
+
+    pub enum Enum {
+        #[deprecated(since = "1.0.0", note = "text")]
+        DeprecatedVariant,
+    }
+
+    #[deprecated(since = "1.0.0", note = "text")]
+    pub struct DeprecatedTupleStruct(pub isize);
+}
+
 pub struct Stable {
     #[deprecated(since = "1.0.0", note = "text")]
     pub override2: u8,