blob: 2cbdf2598e7e6b462da6d7b38857bdb54f1228c2 [file] [log] [blame]
clementbera02d4cf22019-06-03 16:02:58 +02001// 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
5package nesthostexample;
6
7public 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}