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.
15 lines
No EOL
463 B
Java
15 lines
No EOL
463 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8211102
|
|
* @summary Ensure that the lambda analyzer does not run when --release 7 is specified,
|
|
* even if explicitly requested
|
|
* @compile/fail/ref=AnalyzersCheckSourceLevel.out -Werror -XDfind=lambda -XDrawDiagnostics AnalyzersCheckSourceLevel.java
|
|
*
|
|
*/
|
|
public class AnalyzersCheckSourceLevel {
|
|
void t() {
|
|
Runnable r = new Runnable() {
|
|
@Override public void run() {}
|
|
};
|
|
}
|
|
} |