a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
21 lines
275 B
C#
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);
|
|
}
|