Add missing type name

This commit is contained in:
谭九鼎 2019-09-09 09:29:23 +08:00 committed by GitHub
parent 568e8b0dfc
commit d53ef867bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2985,7 +2985,7 @@ public interface I
public class C: I
{
public Prop {
public string Prop {
get { return "April"; } // Must not have a modifier here
internal set {...} // Ok, because I.Prop has no set accessor
}