repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[sdks] Fix README.md
[mono-project.git]
/
mcs
/
tests
/
test-343.cs
blob
77e96f8bbf800cc14f3f671e61470641cdcf2bd0
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
public static void
Main
()
{ Concat ("a", "b", "c"); }
9
}