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

gtest-333.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df5d39544f578eae8c0f2c117c3257eadbe5a88d (plain)
1
2
3
4
5
6
7
8
9
10
using System;

public static class Program
{
	public static void Main ()
	{
		Exception ex1 = null ?? new Exception ();
		Exception ex2 = new Exception() ?? null;
	}
}