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 #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0104-4.cs
blob
9072d99bb13f7a6a05572e61e3e03e45bc3c023f
1
// CS0104: `XAttribute' is an ambiguous reference between `A.XAttribute' and `B.XAttribute'
2
// Line: 21
3
4
using
System
;
5
6
namespace
A
7
{
8
class
XAttribute
:
Attribute { }
9
}
10
11
namespace
B
12
{
13
class
XAttribute
:
Attribute { }
14
}
15
16
namespace
C
17
{
18
using
A
;
19
using
B
;
20
21
[
X
]
22
class
Test
23
{
24
}
25
}