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 #2314 from lambdageek/dev/local-handles
[mono-project.git]
/
mcs
/
errors
/
cs0426.cs
blob
8a31f8f35b85490a26164f0d01889a2fbfe22484
1
// CS0426: 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
}