[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / gtest-optional-40.cs
blobe554fa7686347f6ec1ed8b0b8a505e1976bd6765
1 using System;
3 internal class Program
5 public static void Main ()
7 AttributeOrDefault ("firstItem", null);
10 public static string AttributeOrDefault (string attribute, string defaultValue = null)
12 return "";
15 public static string AttributeOrDefault (string attribute, bool? klass, string defaultValue = null)
17 throw new ApplicationException ();