2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0418-3.cs
blobc4ec15c0f5dc5fb41cb1467e10878d303a4af54c
1 // cs0418-3.cs : `Foo': an abstract class cannot be sealed or static
2 // Line: 3
3 public abstract sealed partial class Foo
5 public string myId;
8 public class PartialAbstractCompilationError
10 public static void Main ()
12 System.Console.WriteLine (typeof (Foo).IsSealed);
13 System.Console.WriteLine (typeof (Foo).IsAbstract);