test/tools/javac/6520152/T6520152.java

Wed, 23 Oct 2013 07:50:04 +0200

author
jlahoda
date
Wed, 23 Oct 2013 07:50:04 +0200
changeset 2165
864dafc5ab7a
parent 0
959103a6100f
permissions
-rw-r--r--

8026861: Wrong LineNumberTable for variable declarations in lambdas
Summary: Setting or correcting positions for many trees produced by LambdaToMethod.
Reviewed-by: vromero, rfield

aoqi@0 1 /**
aoqi@0 2 * @test
aoqi@0 3 * @bug 6520152
aoqi@0 4 * @summary ACC_FINAL flag for anonymous classes shouldn't be set
aoqi@0 5 * @compile T.java
aoqi@0 6 * @run main/othervm T6520152
aoqi@0 7 */
aoqi@0 8
aoqi@0 9 import java.lang.reflect.Method;
aoqi@0 10 import static java.lang.reflect.Modifier.*;
aoqi@0 11
aoqi@0 12 public class T6520152 {
aoqi@0 13 public static void main(String [] args) throws Exception {
aoqi@0 14 Class clazz = Class.forName("T$1");
aoqi@0 15 if ((clazz.getModifiers() & FINAL) != 0) {
aoqi@0 16 throw new RuntimeException("Failed: " + clazz.getName() + " shouldn't be marked final.");
aoqi@0 17 }
aoqi@0 18 }
aoqi@0 19 }

mercurial