You've already forked linux-packaging-mono
19 lines
160 B
C#
19 lines
160 B
C#
![]() |
namespace Martin
|
||
|
{
|
||
|
public class Foo<T>
|
||
|
{ }
|
||
|
}
|
||
|
|
||
|
namespace Baulig
|
||
|
{
|
||
|
using M = Martin;
|
||
|
|
||
|
class X
|
||
|
{
|
||
|
public static void Main ()
|
||
|
{
|
||
|
M.Foo<int> foo;
|
||
|
}
|
||
|
}
|
||
|
}
|