summaryrefslogtreecommitdiff
path: root/test/files/pos/t9393/NamedImpl_1.java
blob: 02ec9b46712f1f35de15689a4e8de8b42cd88fec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Copyright (C) 2009-2015 Typesafe Inc. <http://www.typesafe.com>
 */
package bug;

import bug.Named_1;
import java.io.Serializable;
import java.lang.annotation.Annotation;

public class NamedImpl_1 implements Named_1 {

    public Class<? extends Annotation> annotationType() {
        return null;
    }
}