a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
39 lines
624 B
C#
39 lines
624 B
C#
//
|
|
// Second test from bug 80518
|
|
//
|
|
using System;
|
|
|
|
namespace test
|
|
{
|
|
public class BaseClass
|
|
{
|
|
public BaseClass()
|
|
{
|
|
}
|
|
public string Hello { get { return "Hello"; } }
|
|
}
|
|
|
|
public abstract class Printer
|
|
{
|
|
public abstract void Print<T>(object x) where T: BaseClass;
|
|
}
|
|
|
|
public class PrinterImpl: Printer
|
|
{
|
|
public override void Print<T>(object x)
|
|
{
|
|
Console.WriteLine((x as T).Hello);
|
|
}
|
|
}
|
|
|
|
public class Starter
|
|
{
|
|
public static void Main( string[] args )
|
|
{
|
|
BaseClass bc = new BaseClass();
|
|
Printer p = new PrinterImpl();
|
|
p.Print<BaseClass>(bc);
|
|
}
|
|
}
|
|
}
|