|
Java example source code file (T7057297.java)
The T7057297.java Java example source code
/*
* @test /nodynamiccopyright/
* @bug 7057297
*
* @summary Project Coin: diamond erroneously accepts in array initializer expressions
* @compile/fail/ref=T7057297.out T7057297.java -XDrawDiagnostics
*
*/
class T7205797<X> {
class Inner<Y> {}
T7205797<String>[] o1 = new T7205797<>[1]; //error
T7205797<String>[] o2 = new T7205797<>[1][1]; //error
T7205797<String>[] o3 = new T7205797<>[1][1][1]; //error
T7205797<String>[] o4 = new T7205797<>[] { }; //error
T7205797<String>[] o5 = new T7205797<>[][] { }; //error
T7205797<String>[] o6 = new T7205797<>[][][] { }; //error
T7205797<String>.Inner
Other Java examples (source code examples)Here is a short list of links related to this Java T7057297.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.