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

gtest-536.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6808be527913dd5559f3ea4448bca9eb7cc65e3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;

public class Test
{

	public sealed class Expression<TDelegate>
	{
	}

	public class Expression
	{
		public static void Test ()
		{
		}
	}

	public static void Main ()
	{
		Expression.Test ();
	}
}