Update dependencies from https://github.com/dotnet/arcade build 20190729.1 (#15881)
[mono-project.git] / mcs / tests / test-483.cs
blobba6b97f812113e33b28e6610922014ce5ba58cd7
1 // Compiler options: -r:test-483-lib.dll
3 using System;
5 public class Tests
7 public static void Main ()
9 Bar bar = null;
10 try { bar.clone (); } catch (NullReferenceException) {}
14 class B : Bar
16 public override object clone ()
18 return null;