|
Java example source code file (Neg09.java)
The Neg09.java Java example source code/* * @test /nodynamiccopyright/ * @bug 7020044 * * @summary Check that diamond is not allowed with anonymous inner class expressions * @author Maurizio Cimadamore * @compile/fail/ref=Neg09.out Neg09.java -XDrawDiagnostics * */ class Neg09 { class Member<X> {} static class Nested<X> {} void testSimple() { Member<?> m1 = new Member<>() {}; Nested<?> m2 = new Nested<>() {}; } void testQualified() { Member<?> m1 = this.new Member<>() {}; Nested<?> m2 = new Neg09.Nested<>() {}; } } Other Java examples (source code examples)Here is a short list of links related to this Java Neg09.java source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.