a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
28 lines
220 B
C#
28 lines
220 B
C#
namespace A.N
|
|
{
|
|
class Wrong
|
|
{
|
|
}
|
|
}
|
|
|
|
namespace N
|
|
{
|
|
class C
|
|
{
|
|
public static string value;
|
|
}
|
|
}
|
|
|
|
namespace X
|
|
{
|
|
using A;
|
|
|
|
public class TestClass
|
|
{
|
|
public static void Main ()
|
|
{
|
|
string s = N.C.value;
|
|
}
|
|
}
|
|
}
|