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
Merge pull request #2314 from lambdageek/dev/local-handles
[mono-project.git]
/
mcs
/
errors
/
cs0121-25.cs
blob
46ce81586e7d46313c828299baa5af94f25a4fe5
1
// CS0121: The call is ambiguous between the following methods or properties: `A.B.X.Test(int)' and `A.C.X.Test(int)'
2
// Line: 31
3
4
using static
A
.
B
.
X
;
5
using static
A
.
C
.
X
;
6
7
namespace
A
.
B
8
{
9
static class
X
10
{
11
public static void
Test
(
int
o
)
12
{
13
}
14
}
15
}
16
17
namespace
A
.
C
18
{
19
static class
X
20
{
21
public static int
Test
(
int
o
)
22
{
23
}
24
}
25
}
26
27
class
M
28
{
29
public static void
Main
()
30
{
31
Test
(
0
);
32
}
33
}