a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
24 lines
230 B
C#
24 lines
230 B
C#
using T1 = N1.C1;
|
|
|
|
namespace N2
|
|
{
|
|
class Test : T1
|
|
{
|
|
public static int Main()
|
|
{
|
|
// Compilation-only test.
|
|
Foo ();
|
|
return 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
namespace N1
|
|
{
|
|
public class C1
|
|
{
|
|
public static void Foo ()
|
|
{ }
|
|
}
|
|
}
|