linux-packaging-mono/mcs/tests/test-pattern-13.cs

19 lines
162 B
C#
Raw Normal View History

using System;
class C : B
{
}
public class B
{
public static void Main ()
{
C c = new C ();
if (c is B b)
{
Console.WriteLine (b == null);
}
}
}