blob: fa6078a56edced40bcdd1c1398ddc07c599139a1 [file] [log] [blame]
Søren Gjessef1e2fc92017-08-29 14:13:12 +02001// 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.
4
5public class ClassInitializerAssignmentInitialization {
6
7 static int x = 1;
8 static int y;
9
10 static int z = 2;
11
12 public static void main(String[] args) {
13 System.out.println("x=" + x);
14 System.out.println("y=" + y);
15 }
16}