Skip to content

Instantly share code, notes, and snippets.

@leppie
Created December 18, 2015 13:32
Show Gist options
  • Save leppie/4e5795d0347efb6bf058 to your computer and use it in GitHub Desktop.
Save leppie/4e5795d0347efb6bf058 to your computer and use it in GitHub Desktop.
Does this compile pre-Roslyn?
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