[build] Fix warning (#4177)
[mono-project.git] / mcs / tests / gtest-optional-25.cs
blob4d67dc94185000c26cc2869715bf0e1aa35c8e7c
1 using System;
3 public class Usage
5 public static void Main ()
7 var bug = new Bug ();
8 string[] tags = bug.MethodWithOptionalParameter<string> (0);
12 public class Bug
14 public TValue[] MethodWithOptionalParameter<TValue> (int index, TValue[] defaultValue = null)
16 return null;