Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-899.cs
1 using System;
2
3 class Test
4 {
5         public static void Main()
6         {
7                 object o;
8                 lock (o = new object())
9                 {
10                         Console.WriteLine (o);
11                 }
12
13                 Console.WriteLine (o);
14         }
15 }