aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/annotation/InputSuppressWarningsCompact.java
blob: 25ac727e0f5304c65a8ba471eb77f86da80474b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
package com.puppycrawl.tools.checkstyle.checks.annotation;

import java.lang.annotation.Documented;

@SuppressWarnings({"unchecked", "unused"})
public class InputSuppressWarningsCompact
{   
    @SuppressWarnings({"   "})
    class Empty {
        
        @SuppressWarnings({"unchecked", ""})
        public Empty() {
            
        }
    }
    
    @SuppressWarnings({"unused"})
    enum Duh {
        
        @SuppressWarnings({"unforgiven", "    un"})
        D;
        
        public static void foo() {
            
            @SuppressWarnings({"unused"})
            Object o = new InputSuppressWarningsCompact() {
                
                @Override
                @SuppressWarnings({"unchecked"})
                public String toString() {
                    return "";
                }
            };
        }
    }
    
    @SuppressWarnings({"abcun"})
    @Documented
    @interface Sweet {
        int cool();
    }
    
    @Documented
    @SuppressWarnings({})
    @interface MoreSweetness {
        
        @SuppressWarnings({"unused", "bleh"})
        int cool();
    }
    
    public class Junk {
        
        @SuppressWarnings({})
        int a = 1;
        
        @SuppressWarnings({"unchecked"})
        @Deprecated
        int b = 1;
        void doFoo(String s, @SuppressWarnings({"unchecked"})String y) {
            
        }
    }
    
    @SuppressWarnings({(false) ? "unchecked" : "", (false) ? "unchecked" : ""})
    class Cond {
        
        @SuppressWarnings({(false) ? "" : "unchecked"})
        public Cond() {
            
        }
        
        @SuppressWarnings({(false) ? (true) ? "   " : "unused" : "unchecked", (false) ? (true) ? "   " : "unused" : "unchecked"})
        public void aCond1() {
            
        }
        
        @SuppressWarnings({(false) ? "unchecked" : (true) ? "   " : "unused"})
        public void aCond2() {
            
        }
        
        @java.lang.SuppressWarnings({(false) ? "unchecked" : ("" == "") ? (false) ? (true) ? "" : "foo" : "   " : "unused", (false) ? "unchecked" : ("" == "") ? (false) ? (true) ? "" : "foo" : "   " : "unused"})
        public void seriously() {
            
        }
    }
}