aboutsummaryrefslogtreecommitdiffstats
path: root/bundle-plugin/src/test/java/com/yahoo/container/plugin/classanalysis/sampleclasses/ClassReference.java
blob: 70f88b9d95b1daf9cdd33038f674dccedbf77fb1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container.plugin.classanalysis.sampleclasses;

/**
 * @author Tony Vaagenes
 */
public class ClassReference {
    void classReference() {
        @SuppressWarnings("unused")
        Class<?> clazz = Interface1.class;
    }
}