blob: 94132bbe9b6c32d461f14133de06dc77db2d2e50 [file] [log] [blame]
Jinseong Jeon8fac6ac2017-11-10 12:15:04 -08001// Copyright (c) 2017, the R8 project authors. Please see the AUTHORS file
2// for details. All rights reserved. Use of this source code is governed by a
3// BSD-style license that can be found in the LICENSE file.
4package identifiernamestring;
5
6import java.lang.annotation.ElementType;
7import java.lang.annotation.Retention;
8import java.lang.annotation.RetentionPolicy;
9import java.lang.annotation.Target;
10
11// It should not be discarded by javac.
12@Retention(RetentionPolicy.CLASS)
13@Target({ElementType.FIELD, ElementType.METHOD})
14public @interface IdentifierNameString {
15}