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
bring XslCompiledTransform to MonoTouch
[mcs.git]
/
errors
/
cs0104.cs
blob
569e2b085a3bc28b6be19e70a5fffeb16b6a6783
1
// cs0104.cs: `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
}