Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-96.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5cd064601426e4420d32c769f800b816dee857f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// 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);
}