a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
41 lines
380 B
C#
41 lines
380 B
C#
//
|
|
// Test to ensure that we correctly perform type lookups - thanks to Felix A.I
|
|
//
|
|
namespace N1
|
|
{
|
|
public enum A
|
|
{
|
|
A_1, A_2, A_3
|
|
}
|
|
|
|
namespace N2
|
|
{
|
|
public class B
|
|
{
|
|
A member;
|
|
|
|
void Method (ref A a)
|
|
{
|
|
}
|
|
|
|
public static int Main ()
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
namespace N1.N3
|
|
{
|
|
public class B
|
|
{
|
|
A member;
|
|
|
|
void Method (ref A a)
|
|
{
|
|
}
|
|
}
|
|
}
|