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

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

struct BB
{}

public class X
{
	public static void Main ()
	{
		// Reduced expression statements
		
		new BB? ();
		new float();

		Action a = () => new float();
		a ();
	}
}