2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2014-07-02 19:04:04 +00:00
|
|
|
* @test /nodynamiccopyright/
|
2007-12-01 00:00:00 +00:00
|
|
|
* @bug 4533915
|
|
|
|
* @summary javac should not analyze final parameters for definite assignment status
|
|
|
|
* @author Neal Gafter (gafter)
|
|
|
|
*
|
2014-07-02 19:04:04 +00:00
|
|
|
* @compile/fail/ref=DUParam1.out -XDrawDiagnostics DUParam1.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
public class DUParam1 {
|
2023-01-17 04:43:40 +00:00
|
|
|
public static void meth(final String[] args) {
|
2007-12-01 00:00:00 +00:00
|
|
|
// 8.4.1 makes it illegal to assign to a final parameter.
|
|
|
|
if (false) args = null;
|
|
|
|
}
|
|
|
|
}
|