[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-104.cs
1 //
2 // Test to ensure we do correct overload resolution
3 //
4 using System;
5
6 class Test {
7         public static int Main(String[] args) {
8                 int iTest = 1;
9
10                 System.Threading.Interlocked.Increment(ref iTest);
11
12                 return 0;
13         }
14 }