aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/annotation/InputSuppressWarningsValuePair.java
blob: c0e0403ceac996601b93a7d73078f2c1409a16b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.puppycrawl.tools.checkstyle.checks.annotation;

import java.util.ArrayList;
import java.util.List;

public class InputSuppressWarningsValuePair
{
    public static final String UNCHECKED = "unchecked";

    public static void test() {
        @SuppressWarnings(value = UNCHECKED)
        final List<String> dummyOne = (List<String>) new ArrayList();
    }
}