2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0418-4.cs
blob258aa9c4b3fcdaeb3d4b2985860c4138363a6f17
1 // cs0418-4.cs : `Foo': an abstract class cannot be sealed or static
2 // Line: 3
3 public abstract partial class Foo
5 public string myId;
8 public sealed partial class Foo
10 public string Id { get { return myId; } }
13 public class PartialAbstractCompilationError
15 public static void Main ()
17 System.Console.WriteLine (typeof (Foo).IsSealed);
18 System.Console.WriteLine (typeof (Foo).IsAbstract);