langtools/test/tools/javac/generics/diamond/neg/Neg12.java
changeset 8638 a22e7a4637b3
parent 8609 5e102ef6a2fd
parent 8637 be1b564b50aa
child 8641 fbf4a969ccba
--- a/langtools/test/tools/javac/generics/diamond/neg/Neg12.java	Thu Mar 10 17:11:19 2011 -0800
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,15 +0,0 @@
-/*
- * @test /nodynamiccopyright/
- * @bug 7020043
- *
- * @summary  Project Coin: diamond allowed on non-generic type
- * @author Rémi Forax
- * @compile/fail/ref=Neg12.out Neg12.java -XDrawDiagnostics
- *
- */
-
-class DiamondRaw {
-   public static void main(String[] args) {
-     String s = new String<>("foo");
-   }
-}