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;
|
|
|
|
using static A.C.X;
|
2014-09-04 09:07:35 +01:00
|
|
|
|
|
|
|
namespace A.B
|
|
|
|
{
|
|
|
|
static class X
|
|
|
|
{
|
|
|
|
public static int Test (object o)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace A.C
|
|
|
|
{
|
|
|
|
static class X
|
|
|
|
{
|
|
|
|
public static int Test<T> (T o)
|
|
|
|
{
|
|
|
|
if (typeof (T) != typeof (object))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace C
|
|
|
|
{
|
|
|
|
class M
|
|
|
|
{
|
|
|
|
public static int Main ()
|
|
|
|
{
|
|
|
|
if (Test<object> ("") != 2)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|