a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
28 lines
263 B
C#
28 lines
263 B
C#
using x;
|
|
using y;
|
|
using Test = x.Test;
|
|
|
|
namespace x
|
|
{
|
|
public class Test
|
|
{ }
|
|
}
|
|
|
|
namespace y
|
|
{
|
|
public class Test
|
|
{ }
|
|
}
|
|
|
|
namespace b
|
|
{
|
|
public class a
|
|
{
|
|
public static void Main()
|
|
{
|
|
// Test should be an alias to x.Test
|
|
Test test = new Test();
|
|
}
|
|
}
|
|
}
|