w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs0418-3.cs
blobafd1f6c1c780bd3ebfbd7c758b862b309a18dffe
1 // CS0418: `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);