clementbera | 02d4cf2 | 2019-06-03 16:02:58 +0200 | [diff] [blame] | 1 | // Copyright (c) 2019, 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. |
| 4 | |
| 5 | package nesthostexample; |
| 6 | |
| 7 | public class NestPvtFieldPropagated { |
| 8 | |
| 9 | public static class Inner { |
| 10 | private static String staticField = "toPropagateStatic"; |
| 11 | } |
| 12 | |
| 13 | public static void main(String[] args) { |
| 14 | System.out.println(Inner.staticField); |
| 15 | } |
| 16 | } |