Files
openide/java/java-tests/testData/codeInsight/javadocIG/valueInMethod.java
peter c3b73e2201 IDEA-172876 Purity inference algorithm does not match hardcoded contracts for assertion methods
GitOrigin-RevId: 98da482dde66ecc9d0137aedfbc33a3a4c2cc4e0
2019-10-10 08:32:56 +00:00

7 lines
131 B
Java

class A {
public static int A = 23;
/** The value of A is {@value #A}. */
public static void JAVADOC_ME() { someCode(); }
}