[nem-bug] [Nemerle 0000996]: lack of checks when "implements" is
used
feedback at nemerle.org
feedback at nemerle.org
Mon Apr 30 11:39:17 CEST 2007
The following issue has been SUBMITTED.
======================================================================
<http://nemerle.org/bugs/view.php?id=996>
======================================================================
Reported By: divan
Assigned To:
======================================================================
Project: Nemerle
Issue ID: 996
Category: Compiler
Reproducibility: always
Severity: major
Priority: normal
Status: new
======================================================================
Date Submitted: 04-30-2007 11:39 CEST
Last Modified: 04-30-2007 11:39 CEST
======================================================================
Summary: lack of checks when "implements" is used
Description:
interface IDo {
Do() : void;
}
class A : IDo {
public //it's ok to be public
//private //compiles, but shouldn't?
//internal //compiles, fails PEVerify check
Do() : void implements IDo.Do {
}
}
Should be E: "method implementing interface member must be public and
nonstatic", for private and internal case.
======================================================================
Issue History
Date Modified Username Field Change
======================================================================
04-30-07 11:39 divan New Issue
======================================================================
More information about the bugs
mailing list