New test.
[mono.git] / mcs / tests / test-483.cs
1 // Compiler options: -r:test-483-lib.dll
2
3 using System;
4
5 public class Tests {
6
7         public static void Main () {
8                 Bar bar = null;
9                 try { bar.clone (); } catch (NullReferenceException) {}
10         }
11 }