@@ -20,16 +20,16 @@ pub fn deprecated() {}
2020#[ deprecated( since = "1.0.0" , reason = "text" ) ]
2121pub fn deprecated_text ( ) { }
2222
23- #[ unstable( feature = "test_feature" ) ]
23+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
2424#[ deprecated( since = "1.0.0" ) ]
2525pub fn deprecated_unstable ( ) { }
26- #[ unstable( feature = "test_feature" ) ]
26+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
2727#[ deprecated( since = "1.0.0" , reason = "text" ) ]
2828pub fn deprecated_unstable_text ( ) { }
2929
30- #[ unstable( feature = "test_feature" ) ]
30+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
3131pub fn unstable ( ) { }
32- #[ unstable( feature = "test_feature" , reason = "text" ) ]
32+ #[ unstable( feature = "test_feature" , reason = "text" , issue = "0" ) ]
3333pub fn unstable_text ( ) { }
3434
3535#[ stable( feature = "rust1" , since = "1.0.0" ) ]
@@ -48,16 +48,16 @@ impl MethodTester {
4848 #[ deprecated( since = "1.0.0" , reason = "text" ) ]
4949 pub fn method_deprecated_text ( & self ) { }
5050
51- #[ unstable( feature = "test_feature" ) ]
51+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
5252 #[ deprecated( since = "1.0.0" ) ]
5353 pub fn method_deprecated_unstable ( & self ) { }
54- #[ unstable( feature = "test_feature" ) ]
54+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
5555 #[ deprecated( since = "1.0.0" , reason = "text" ) ]
5656 pub fn method_deprecated_unstable_text ( & self ) { }
5757
58- #[ unstable( feature = "test_feature" ) ]
58+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
5959 pub fn method_unstable ( & self ) { }
60- #[ unstable( feature = "test_feature" , reason = "text" ) ]
60+ #[ unstable( feature = "test_feature" , reason = "text" , issue = "0" ) ]
6161 pub fn method_unstable_text ( & self ) { }
6262
6363 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
@@ -75,16 +75,16 @@ pub trait Trait {
7575 #[ deprecated( since = "1.0.0" , reason = "text" ) ]
7676 fn trait_deprecated_text ( & self ) { }
7777
78- #[ unstable( feature = "test_feature" ) ]
78+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
7979 #[ deprecated( since = "1.0.0" ) ]
8080 fn trait_deprecated_unstable ( & self ) { }
81- #[ unstable( feature = "test_feature" ) ]
81+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
8282 #[ deprecated( since = "1.0.0" , reason = "text" ) ]
8383 fn trait_deprecated_unstable_text ( & self ) { }
8484
85- #[ unstable( feature = "test_feature" ) ]
85+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
8686 fn trait_unstable ( & self ) { }
87- #[ unstable( feature = "test_feature" , reason = "text" ) ]
87+ #[ unstable( feature = "test_feature" , reason = "text" , issue = "0" ) ]
8888 fn trait_unstable_text ( & self ) { }
8989
9090 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
@@ -95,20 +95,20 @@ pub trait Trait {
9595
9696impl Trait for MethodTester { }
9797
98- #[ unstable( feature = "test_feature" ) ]
98+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
9999pub trait UnstableTrait { fn dummy ( & self ) { } }
100100
101101#[ stable( feature = "test_feature" , since = "1.0.0" ) ]
102102#[ deprecated( since = "1.0.0" ) ]
103103pub struct DeprecatedStruct {
104104 #[ stable( feature = "test_feature" , since = "1.0.0" ) ] pub i : isize
105105}
106- #[ unstable( feature = "test_feature" ) ]
106+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
107107#[ deprecated( since = "1.0.0" ) ]
108108pub struct DeprecatedUnstableStruct {
109109 #[ stable( feature = "test_feature" , since = "1.0.0" ) ] pub i : isize
110110}
111- #[ unstable( feature = "test_feature" ) ]
111+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
112112pub struct UnstableStruct {
113113 #[ stable( feature = "test_feature" , since = "1.0.0" ) ] pub i : isize
114114}
@@ -120,10 +120,10 @@ pub struct StableStruct {
120120#[ stable( feature = "test_feature" , since = "1.0.0" ) ]
121121#[ deprecated( since = "1.0.0" ) ]
122122pub struct DeprecatedUnitStruct ;
123- #[ unstable( feature = "test_feature" ) ]
123+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
124124#[ deprecated( since = "1.0.0" ) ]
125125pub struct DeprecatedUnstableUnitStruct ;
126- #[ unstable( feature = "test_feature" ) ]
126+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
127127pub struct UnstableUnitStruct ;
128128#[ stable( feature = "rust1" , since = "1.0.0" ) ]
129129pub struct StableUnitStruct ;
@@ -133,10 +133,10 @@ pub enum Enum {
133133 #[ stable( feature = "test_feature" , since = "1.0.0" ) ]
134134 #[ deprecated( since = "1.0.0" ) ]
135135 DeprecatedVariant ,
136- #[ unstable( feature = "test_feature" ) ]
136+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
137137 #[ deprecated( since = "1.0.0" ) ]
138138 DeprecatedUnstableVariant ,
139- #[ unstable( feature = "test_feature" ) ]
139+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
140140 UnstableVariant ,
141141
142142 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
@@ -146,10 +146,10 @@ pub enum Enum {
146146#[ stable( feature = "test_feature" , since = "1.0.0" ) ]
147147#[ deprecated( since = "1.0.0" ) ]
148148pub struct DeprecatedTupleStruct ( #[ stable( feature = "rust1" , since = "1.0.0" ) ] pub isize ) ;
149- #[ unstable( feature = "test_feature" ) ]
149+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
150150#[ deprecated( since = "1.0.0" ) ]
151151pub struct DeprecatedUnstableTupleStruct ( #[ stable( feature = "rust1" , since = "1.0.0" ) ] pub isize ) ;
152- #[ unstable( feature = "test_feature" ) ]
152+ #[ unstable( feature = "test_feature" , issue = "0" ) ]
153153pub struct UnstableTupleStruct ( #[ stable( feature = "rust1" , since = "1.0.0" ) ] pub isize ) ;
154154#[ stable( feature = "rust1" , since = "1.0.0" ) ]
155155pub struct StableTupleStruct ( #[ stable( feature = "rust1" , since = "1.0.0" ) ] pub isize ) ;
0 commit comments