]> git.lizzy.rs Git - rust.git/blob - src/test/ui/deprecation/deprecation-sanity.rs
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / deprecation / deprecation-sanity.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Various checks that deprecation attributes are used correctly
12
13 mod bogus_attribute_types_1 {
14     #[deprecated(since = "a", note = "a", reason)] //~ ERROR unknown meta item 'reason'
15     fn f1() { }
16
17     #[deprecated(since = "a", note)] //~ ERROR incorrect meta item
18     fn f2() { }
19
20     #[deprecated(since, note = "a")] //~ ERROR incorrect meta item
21     fn f3() { }
22
23     #[deprecated(since = "a", note(b))] //~ ERROR incorrect meta item
24     fn f5() { }
25
26     #[deprecated(since(b), note = "a")] //~ ERROR incorrect meta item
27     fn f6() { }
28 }
29
30 #[deprecated(since = "a", note = "b")]
31 #[deprecated(since = "a", note = "b")]
32 fn multiple1() { } //~ ERROR multiple deprecated attributes
33
34 #[deprecated(since = "a", since = "b", note = "c")] //~ ERROR multiple 'since' items
35 fn f1() { }
36
37 fn main() { }