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
2010-04-15 Rodrigo Kumpera <rkumpera@novell.com>
[mono-project.git]
/
mcs
/
errors
/
cs0426.cs
blob
c71e08896fcad0b7b94d57d9da4ba256f0947467
1
// cs0426.cs: The nested type `B' does not exist in the type `A'
2
// Line: 12
3
4
class
A
5
{
6
}
7
8
class
Test
9
{
10
public static void
Main
()
11
{
12
A
.
B a
;
13
}
14
}