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
monotouch uses the real HttpWebRequest
[mcs.git]
/
tests
/
test-343.cs
blob
794b941ffff2168e30f3948e09ee218f3b6910c1
1
using
System
;
2
3
class
X
{
4
static void
Concat
(
string
s1
,
string
s2
,
string
s3
)
{ }
5
static void
Concat
(
params string
[]
ss
) {
6
throw new
Exception
(
"Overload resolution failed"
);
7
}
8
static void
Main
()
{ Concat ("a", "b", "c"); }
9
}