Consider the following: ```java public interface Face { default String getValue() { return "value"; } } ``` ```groovy class Impl implements Face { } void test(Impl impl) { impl.getValue() impl.value } ``` "value" is displayed as unknown (underlined). 
Consider the following:
"value" is displayed as unknown (underlined).