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
[bcl] Update BCL Linked Size
[mono-project.git]
/
mcs
/
errors
/
cs0104.cs
blob
1b842ad6aaf3d51058f1e03fcdcab2044fca787d
1
// CS0104: `X' is an ambiguous reference between `A.X' and `B.X'
2
// Line: 16
3
namespace
A
{
4
class
X
{
5
}
6
}
7
8
namespace
B
{
9
class
X
{
10
}
11
}
12
13
namespace
C
{
14
using
A
;
15
using
B
;
16
class
D
:
X
{
17
18
static void
Main
() {}
19
}
20
}