Created
December 18, 2015 13:32
-
-
Save leppie/4e5795d0347efb6bf058 to your computer and use it in GitHub Desktop.
Does this compile pre-Roslyn?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
enum Foo { Bar, Baz } | |
public class P | |
{ | |
static void Foo(Foo foo = Foo.Baz) {} | |
static void Main() | |
{ | |
Foo(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment