test/langtools/tools/javac/varargs/ElementTypeMissingTest.java
author sadayapalam
Tue, 12 Dec 2017 18:40:31 +0530
changeset 48246 aadc02050d3b
permissions -rw-r--r--
8193142: Regression: ClassCastException: Type$ErrorType cannot be cast to Type$ArrayType Reviewed-by: mcimadamore

/*
 * @test /nodynamiccopyright/
 * @bug 8193142
 * @summary Regression: ClassCastException: Type$ErrorType cannot be cast to Type$ArrayType
 * @compile/fail/ref=ElementTypeMissingTest.out -XDrawDiagnostics -XDdev ElementTypeMissingTest.java
 */

public class ElementTypeMissingTest { void m(Unkn... own) { } }