Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

36 lines
676 B
C#

using System;
using System.Reflection;
static class StaticClass
{
const int Foo = 1;
delegate object D ();
enum E {}
public static string Name ()
{
return "OK";
}
}
public class MainClass
{
public static int Main ()
{
Type type = typeof (StaticClass);
if (!type.IsAbstract || !type.IsSealed) {
Console.WriteLine ("Is not abstract sealed");
return 1;
}
if (type.GetConstructors ().Length > 0) {
Console.WriteLine ("Has constructor");
return 2;
}
Console.WriteLine (StaticClass.Name ());
return 0;
}
}