]> git.lizzy.rs Git - rust.git/blob - tests/ui/attrs.rs
Merge pull request #3265 from mikerite/fix-export
[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
11 #![feature(tool_lints)]
12
13
14 #![warn(clippy::inline_always, clippy::deprecated_semver)]
15
16 #[inline(always)]
17 fn test_attr_lint() {
18     assert!(true)
19 }
20
21 #[inline(always)]
22 fn false_positive_expr() {
23     unreachable!()
24 }
25
26 #[inline(always)]
27 fn false_positive_stmt() {
28     unreachable!();
29 }
30
31 #[inline(always)]
32 fn empty_and_false_positive_stmt() {
33     ;
34     unreachable!();
35 }
36
37 #[deprecated(since = "forever")]
38 pub const SOME_CONST : u8 = 42;
39
40 #[deprecated(since = "1")]
41 pub const ANOTHER_CONST : u8 = 23;
42
43 #[deprecated(since = "0.1.1")]
44 pub const YET_ANOTHER_CONST : u8 = 0;
45
46 fn main() {
47     test_attr_lint();
48     if false { false_positive_expr() }
49     if false { false_positive_stmt() }
50     if false { empty_and_false_positive_stmt() }
51 }