2014-09-04 09:07:35 +01:00
|
|
|
// Compiler options: -langversion:6
|
|
|
|
|
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 ()
|
|
|
|
{
|
|
|
|
return 5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace C
|
|
|
|
{
|
|
|
|
class M
|
|
|
|
{
|
|
|
|
public static int Main ()
|
|
|
|
{
|
|
|
|
if (Test () != 5)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|