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

test-367.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8b6766664e946c9cd169956908c88144114afe6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// This is a test for bug #57703
//
using System;
using System.Reflection;

public interface ITest {
	event EventHandler DocBuildingStep;
}

class X {
	public static int Main ()
	{
		return typeof (ITest).GetFields (BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance).Length;
	}
}