Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

21 lines
275 B
C#

//
// Compilation test
//
// This used to be a bug in the name lookups in delegate declarations
//
namespace N1
{
public class A
{
public static int Main ()
{
return 0;
}
}
//
// A used to not be resolved
//
public delegate void C(object sender, A a);
}