[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0500-2.cs
blobdb73647ff454b20739345ed65b8421f74379001e
1 // CS0500: `A.Foo.get' cannot declare a body because it is marked abstract
2 // Line: 5
4 public abstract class A {
5 public abstract int Foo { get { return 1; } }