* support-test-*.cs: Rename from test-*-p2.cs.
[mono.git] / mcs / errors / cs0500-2.cs
1 // cs0500.cs: `A.Foo' cannot declare a body because it is marked abstract
2 // Line: 5
3
4 public abstract class A {
5         public abstract int Foo { get { return 1; } }
6 }
7