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
2009-03-15 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs0576-2.cs
blob
2b501aece5b8b955af695108b6aeb55d953a7209
1
// CS0576: Namespace `Top' contains a definition with same name as alias `T'
2
// Line: 12
3
4
namespace
Top
5
{
6
using
T
=
Nested
.
C
;
7
8
namespace
T
9
{
10
class
C
11
{
12
T t
;
13
}
14
}
15
}