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
/
cs0432-5.cs
blob
6801d320578ca8410ba2b2e99ce647b33ed2aa6e
1
// CS0432: Alias `BB' not found
2
// Line: 13
3
4
namespace
A
5
{
6
using
BB
=
System
.
Collections
.
Generic
;
7
}
8
9
namespace
A
.
B
10
{
11
class
X
12
{
13
BB
::
List
<
int
>
p
;
14
}
15
}