repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-02-20 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
test-104.cs
blob
82fcfac57fd1be769cb1393e438ad289127937ed
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
}