mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 02:54:35 +02:00

Generalizing the crules infrastructure, adding a new analyzer to check String concatenation in Assert calls. Reviewed-by: jjg, vromero
9 lines
201 B
Java
9 lines
201 B
Java
/**@test /nodynamiccopyright/
|
|
* @compile/fail/ref=Test.out -Xplugin:coding_rules -XDrawDiagnostics Test.java
|
|
*/
|
|
|
|
package com.sun.tools.javac;
|
|
|
|
public class Test {
|
|
public static String mutable;
|
|
}
|