Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git] / mcs / tests / test-822.cs
blob700ec95fd39cfe10a9fcdee7315863d19dc4d65a
1 // Compiler options: -r:test-822-lib.dll
3 using System;
5 class Test
7 public static int Main ()
9 B b = new B ();
10 b.Prop = 1;
11 int a = b.Prop;
12 return 0;