Bump bootstrap compiler support to include default parameters
authorMarek Safar <marek.safar@gmail.com>
Thu, 11 Oct 2012 11:03:26 +0000 (12:03 +0100)
committerMarek Safar <marek.safar@gmail.com>
Thu, 11 Oct 2012 11:03:26 +0000 (12:03 +0100)
mcs/build/common/basic-profile-check.cs

index a945efb220d98bea5a64edf335bbc048f17315e1..42d7adedfea4d725bbd13df3726652fee1a9c9c1 100644 (file)
@@ -5,6 +5,10 @@ class X {
                // we use 'var' all around in the compiler sources
                var x = new X ();
        }
+       
+       void DefaultParametersAvailable (int i = 3)
+       {
+       }
 
        static int Main ()
        {