Add support for Windows x64 Full AOT + LLVM + Interpreter on CI. (#15276)
[mono-project.git] / mcs / tests / test-anon-08.cs
blobf7464c4d05870fc5b60271c5737fb98889ecfaac
1 //
2 // Tests assignment of a captured variable to another
3 // Do not add anything else to this test.
4 //
5 delegate void S ();
7 class X {
9 //
10 // DO NOT ADD ANYTHING ELSE TO THIS TEST
12 public static int Main ()
14 int a = 2;
15 int b = 1;
16 S d = delegate {
17 a = b;
20 return 0;