test/tools/javap/4111861/A.java

Tue, 10 Apr 2012 08:15:25 -0700

author
ohair
date
Tue, 10 Apr 2012 08:15:25 -0700
changeset 1244
807ca8ffbeb4
parent 0
959103a6100f
permissions
-rw-r--r--

7074397: Build infrastructure changes (makefile re-write)
Summary: New makefiles transition, old and new living side by side for now.
Reviewed-by: ohair, jjg, dholmes, ohrstrom, erikj, ihse, tgranat, ykantser
Contributed-by: ohrstrom <fredrik.ohrstrom@oracle.com>, erikj <erik.joelsson@oracle.com>, ihse <magnus.ihse.bursie@oracle.com>, tgranat <torbjorn.granat@oracle.com>, ykantser <yekaterina.kantserova@oracle.com>

aoqi@0 1 class A {
aoqi@0 2 public static final int i = 42;
aoqi@0 3 public static final boolean b = true;
aoqi@0 4 public static final float f = 1.0f;
aoqi@0 5 public static final double d = 1.0d;
aoqi@0 6 public static final short s = 1;
aoqi@0 7 public static final long l = 1l;
aoqi@0 8 public static final char cA = 'A';
aoqi@0 9 public static final char c0 = '\u0000';
aoqi@0 10 public static final char cn = '\n';
aoqi@0 11 public static final char cq1 = '\'';
aoqi@0 12 public static final char cq2 = '"';
aoqi@0 13 public static final java.lang.String t1 = "abc \u0000 \f\n\r\t'\"";
aoqi@0 14 }

mercurial