aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/parse.y
diff options
context:
space:
mode:
authorRanjit Mathew <rmathew@hotmail.com>2005-09-05 14:57:25 +0000
committerRanjit Mathew <rmathew@gcc.gnu.org>2005-09-05 14:57:25 +0000
commit75d1a48521ad4606c4cccefaafbb08e7eeaee67c (patch)
treed4c2c71bd7d392f0a29c5042cda181f2835df94d /gcc/java/parse.y
parent7291645b6e1a6b5ee9c2f95ea6cf0b00024c7727 (diff)
downloadgcc-75d1a48521ad4606c4cccefaafbb08e7eeaee67c.zip
gcc-75d1a48521ad4606c4cccefaafbb08e7eeaee67c.tar.gz
gcc-75d1a48521ad4606c4cccefaafbb08e7eeaee67c.tar.bz2
re PR java/23431 (gcj allows overriding with more restrictive access)
PR java/23431 * typeck.c (lookup_do): Look up interfaces for the original class, not the base class. * parse.y (java_check_regular_methods): Fix diagnostic message for more restrictive overriding of a method from an interface. From-SVN: r103909
Diffstat (limited to 'gcc/java/parse.y')
-rw-r--r--gcc/java/parse.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/parse.y b/gcc/java/parse.y
index b1de35f..9dd860d 100644
--- a/gcc/java/parse.y
+++ b/gcc/java/parse.y
@@ -6518,7 +6518,7 @@ java_check_regular_methods (tree class_decl)
tree found_decl = TYPE_NAME (DECL_CONTEXT (found));
parse_error_context (method_wfl, "Class %qs must override %qs with a public method in order to implement interface %qs",
IDENTIFIER_POINTER (DECL_NAME (class_decl)),
- lang_printable_name (method, 2),
+ lang_printable_name (found, 0),
IDENTIFIER_POINTER (DECL_NAME (found_decl)));
}