2014-09-04 09:07:35 +01:00
|
|
|
// Compiler options: -langversion:6
|
|
|
|
|
|
|
|
using System;
|
2015-04-07 09:35:12 +01:00
|
|
|
using static A.B.X;
|
2014-09-04 09:07:35 +01:00
|
|
|
|
|
|
|
namespace A.B
|
|
|
|
{
|
|
|
|
static class X
|
|
|
|
{
|
|
|
|
public static int Test (int o)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace A.C
|
|
|
|
{
|
|
|
|
static class X
|
|
|
|
{
|
|
|
|
public static int Test (int o)
|
|
|
|
{
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace C
|
|
|
|
{
|
2015-04-07 09:35:12 +01:00
|
|
|
using static A.C.X;
|
2014-09-04 09:07:35 +01:00
|
|
|
|
|
|
|
class M
|
|
|
|
{
|
|
|
|
public static int Main ()
|
|
|
|
{
|
|
|
|
if (Test (3) != 2)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|