source: trunk/gcc/libjava/testsuite/libjava.compile/final_assignment_check.java@ 3186

Last change on this file since 3186 was 2, checked in by bird, 23 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 290 bytes
Line 
1class f {
2 final static char c = 3;
3 final static byte b = 0.1;
4 final static short s = 3.5f;
5 final static int i = 4L;
6 final static long x = 2.5;
7 final static float y = 2.6;
8 final static String S = new Object ();
9 void foo () {
10 final int i = 2.1;
11 }
12}
Note: See TracBrowser for help on using the repository browser.