Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-104.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 82fcfac57fd1be769cb1393e438ad289127937ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//
// Test to ensure we do correct overload resolution
//
using System;

class Test {
        public static int Main(String[] args) {
                int iTest = 1;

                System.Threading.Interlocked.Increment(ref iTest);

		return 0;
        }
}