Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
14 lines
339 B
Java
14 lines
339 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8027886
|
|
* @summary Receiver parameters must not be final
|
|
* @compile/fail/ref=FinalReceiverTest.out -XDrawDiagnostics FinalReceiverTest.java
|
|
*/
|
|
|
|
class FinalReceiverTest {
|
|
void m() {
|
|
class Inner {
|
|
Inner(final FinalReceiverTest FinalReceiverTest.this) {}
|
|
}
|
|
}
|
|
}
|