2007-05-25 Jonathan Chambers <joncham@gmail.com>
[mcs.git] / tests / test-524.cs
blob78a46ec973bb0de6e2c70a0e788044e48b910d71
1 using System;
2 public class Foo {
3 public static int Main()
5 try {
6 lock (null) {
9 catch (ArgumentNullException) {
10 return 0;
12 return 1;