1   package com.puppycrawl.tools.checkstyle.checks.annotation.suppresswarnings;
2   
3   import java.lang.annotation.Documented;
4   
5   @SuppressWarnings({"unchecked", "unused"})
6   public class InputSuppressWarningsCompact
7   {
8       @SuppressWarnings({"   "})
9       class Empty {
10  
11          @SuppressWarnings({"unchecked", ""})
12          public Empty() {
13  
14          }
15      }
16  
17      @SuppressWarnings({"unused"})
18      enum Duh {
19  
20          @SuppressWarnings({"unforgiven", "    un"})
21          D;
22  
23          public static void foo() {
24  
25              @SuppressWarnings({"unused"})
26              Object o = new InputSuppressWarningsCompact() {
27  
28                  @Override
29                  @SuppressWarnings({"unchecked"})
30                  public String toString() {
31                      return "";
32                  }
33              };
34          }
35      }
36  
37      @SuppressWarnings({"abcun"})
38      @Documented
39      @interface Sweet {
40          int cool();
41      }
42  
43      @Documented
44      @SuppressWarnings({})
45      @interface MoreSweetness {
46  
47          @SuppressWarnings({"unused", "bleh"})
48          int cool();
49      }
50  
51      public class Junk {
52  
53          @SuppressWarnings({})
54          int a = 1;
55  
56          @SuppressWarnings({"unchecked"})
57          @Deprecated
58          int b = 1;
59          void doFoo(String s, @SuppressWarnings({"unchecked"})String y) {
60  
61          }
62      }
63  
64  }