Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-com-03.cs
1 // Compiler options: -r:test-com-03-lib.dll
2
3 using System;
4
5 class X
6 {
7         void Test_PropertyOptionalParameters (C c)
8         {
9                 // need to just run verifier on the method
10                 if (c == null)
11                         return;
12
13                 Console.WriteLine (c.Value);
14                 c.Value2 = 1;
15         }
16
17         public static int Main ()
18         {
19                 var x = new X ();
20                 x.Test_PropertyOptionalParameters (null);
21
22                 return 0;
23         }
24 }