2015-12-04 16:34:28 +00:00
|
|
|
// Various checks that deprecation attributes are used correctly
|
|
|
|
|
|
|
|
mod bogus_attribute_types_1 {
|
|
|
|
#[deprecated(since = "a", note = "a", reason)] //~ ERROR unknown meta item 'reason'
|
|
|
|
fn f1() { }
|
|
|
|
|
|
|
|
#[deprecated(since = "a", note)] //~ ERROR incorrect meta item
|
|
|
|
fn f2() { }
|
|
|
|
|
|
|
|
#[deprecated(since, note = "a")] //~ ERROR incorrect meta item
|
|
|
|
fn f3() { }
|
|
|
|
|
|
|
|
#[deprecated(since = "a", note(b))] //~ ERROR incorrect meta item
|
|
|
|
fn f5() { }
|
|
|
|
|
|
|
|
#[deprecated(since(b), note = "a")] //~ ERROR incorrect meta item
|
|
|
|
fn f6() { }
|
2019-02-04 17:41:01 +00:00
|
|
|
|
|
|
|
#[deprecated(note = b"test")] //~ ERROR literal in `deprecated` value must be a string
|
|
|
|
fn f7() { }
|
|
|
|
|
|
|
|
#[deprecated("test")] //~ ERROR item in `deprecated` must be a key/value pair
|
|
|
|
fn f8() { }
|
2015-12-04 16:34:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[deprecated(since = "a", note = "b")]
|
2022-04-12 00:43:42 +00:00
|
|
|
#[deprecated(since = "a", note = "b")] //~ ERROR multiple `deprecated` attributes
|
2020-11-01 11:29:57 +00:00
|
|
|
fn multiple1() { }
|
2015-12-04 16:34:28 +00:00
|
|
|
|
|
|
|
#[deprecated(since = "a", since = "b", note = "c")] //~ ERROR multiple 'since' items
|
|
|
|
fn f1() { }
|
|
|
|
|
2020-11-01 12:09:03 +00:00
|
|
|
struct X;
|
|
|
|
|
2020-11-02 12:17:14 +00:00
|
|
|
#[deprecated = "hello"] //~ ERROR this `#[deprecated]` annotation has no effect
|
2020-11-01 12:09:03 +00:00
|
|
|
impl Default for X {
|
|
|
|
fn default() -> Self {
|
|
|
|
X
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-04 16:34:28 +00:00
|
|
|
fn main() { }
|