Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-optional-40.cs
1 using System;
2
3 internal class Program
4 {
5         public static void Main ()
6         {
7                 AttributeOrDefault ("firstItem", null); 
8         }
9         
10         public static string AttributeOrDefault (string attribute, string defaultValue = null)
11         {
12                 return "";
13         }
14
15         public static string AttributeOrDefault (string attribute, bool? klass, string defaultValue = null)
16         {
17                 throw new ApplicationException ();
18         }
19 }