linux-packaging-mono/mcs/tests/test-partial-11.cs
Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

44 lines
785 B
C#

using System;
using System.Reflection;
static partial class StaticClass
{
public static string Name ()
{
return "OK";
}
}
partial class StaticClass2 {}
static partial class StaticClass2 {}
public class MainClass
{
static bool IsStatic (Type t)
{
Type type = typeof (StaticClass);
if (!type.IsAbstract || !type.IsSealed) {
Console.WriteLine ("Is not abstract sealed");
return false;
}
if (type.GetConstructors ().Length > 0) {
Console.WriteLine ("Has constructor");
return false;
}
return true;
}
public static int Main ()
{
if (!IsStatic (typeof (StaticClass)))
return 1;
if (!IsStatic (typeof (StaticClass2)))
return 2;
Console.WriteLine ("OK");
return 0;
}
}