| // Copyright (c) 2017, the R8 project authors. Please see the AUTHORS file |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| package identifiernamestring; |
| public static void main(String[] args) throws Exception { |
| assert ax.boo.equals(A.TYPE_B); |
| ax.bar("identifiernamestring.B"); |
| Class a = Class.forName(A.TYPE_A); |
| Class b_a = Class.forName(B.TYPO_A); |
| Class b = Class.forName(ax.boo); |
| Class b_b = Class.forName(B.TYPO_B); |
| // As TYPO_B is not renamed, they will be different. |