31 lines
324 B
C#
31 lines
324 B
C#
|
// A non-generic type may have a closed constructed type as its parent
|
||
|
|
||
|
class Foo<T>
|
||
|
{
|
||
|
public void Hello ()
|
||
|
{ }
|
||
|
|
||
|
public void World (T t)
|
||
|
{
|
||
|
Hello ();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class Bar : Foo<int>
|
||
|
{
|
||
|
public void Test ()
|
||
|
{
|
||
|
Hello ();
|
||
|
World (4);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class X
|
||
|
{
|
||
|
public static void Main ()
|
||
|
{
|
||
|
Bar bar = new Bar ();
|
||
|
bar.Test ();
|
||
|
}
|
||
|
}
|