]> git.lizzy.rs Git - rust.git/blob - tests/ui/attrs.rs
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / attrs.rs
1 // Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution.
3 //
4 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
5 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
7 // option. This file may not be copied, modified, or distributed
8 // except according to those terms.
9
10 #![warn(clippy::inline_always, clippy::deprecated_semver)]
11
12 #[inline(always)]
13 fn test_attr_lint() {
14     assert!(true)
15 }
16
17 #[inline(always)]
18 fn false_positive_expr() {
19     unreachable!()
20 }
21
22 #[inline(always)]
23 fn false_positive_stmt() {
24     unreachable!();
25 }
26
27 #[inline(always)]
28 fn empty_and_false_positive_stmt() {
29     unreachable!();
30 }
31
32 #[deprecated(since = "forever")]
33 pub const SOME_CONST: u8 = 42;
34
35 #[deprecated(since = "1")]
36 pub const ANOTHER_CONST: u8 = 23;
37
38 #[deprecated(since = "0.1.1")]
39 pub const YET_ANOTHER_CONST: u8 = 0;
40
41 fn main() {
42     test_attr_lint();
43     if false {
44         false_positive_expr()
45     }
46     if false {
47         false_positive_stmt()
48     }
49     if false {
50         empty_and_false_positive_stmt()
51     }
52 }