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

test-524.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b9a440fd75630a7e9513bbb17abf1afb13c47ff5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
public class Foo {
   public static int Main()
   {
	   try {
		   lock (null) {
		   }
	   }
	   catch (ArgumentNullException) {
		   return 0;
	   }
	   return 1;
   }
}