Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/advHighlighting7/StaticImportMethodShadowing.java
Bas Leijdekkers 6916b6b005 Java: better error message when there are more arguments than parameters (IDEA-336129)
GitOrigin-RevId: a17a5f0f3878b9baf211737a614d1aa1a5103d31
2024-06-28 17:14:56 +00:00

32 lines
1.0 KiB
Java

/*
* Copyright 2000-2011 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package P1;
import static P1.Outside.getObject;
class Outside {
static Object getObject(Object dummy) { return "Static"; }
}
class Base {
Object getObject() { return "Instance"; }
}
class Derived extends Base {
final static Object o1 = <error descr="Non-static method 'getObject()' cannot be referenced from a static context">getObject</error>(null);
final Object o2 = getObject<error descr="Expected no arguments but found 1">(null)</error>;
}