[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[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);