Files
Yann Cébron ef9de04639 IDEA-212496 Highlight invalid reference to plugin configuration elements
GitOrigin-RevId: b68eb82bff5746b8671e665f9efe0c4cb8a538ea
2020-10-13 12:04:01 +00:00

8 lines
331 B
Java

import com.intellij.openapi.application.Experiments;
public class ExperimentalFeatureId {
public static void main(String[] args) {
Experiments.getInstance().isFeatureEnabled("my.feature.id");
Experiments.getInstance().isFeatureEnabled("<error descr="Cannot resolve feature 'INVALID_VALUE'">INVALID_VALUE</error>");
}
}