Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatting-changes
[mono.git] / mcs / tests / gtest-333.cs
1 using System;
2
3 public static class Program
4 {
5         public static void Main ()
6         {
7                 Exception ex1 = null ?? new Exception ();
8                 Exception ex2 = new Exception() ?? null;
9         }
10 }