Update pipeline-netcore-runtime.yml
[mono-project.git] / mcs / tests / test-com-03.cs
blobe7040178f41d3f6b5d97e08a7c4839041cd30a4d
1 // Compiler options: -r:test-com-03-lib.dll
3 using System;
5 class X
7 void Test_PropertyOptionalParameters (C c)
9 // need to just run verifier on the method
10 if (c == null)
11 return;
13 Console.WriteLine (c.Value);
14 c.Value2 = 1;
17 public static int Main ()
19 var x = new X ();
20 x.Test_PropertyOptionalParameters (null);
22 return 0;