[amd64] Make inline function in header static
[mono-project.git] / mcs / tests / test-anon-175.cs
blob8dd625a3832a7818ebff7fac5d04a85acebf2e82
1 delegate int F (int i);
2 class Foo {
3 static int i;
4 static void Main ()
6 i = 0;
7 F f = delegate (int i) { return i; };