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
/
cs0426-2.cs
blob
2d7d66a92e4e7c1f6b60aaa65b80eacd3f6c5fa3
1
// CS0426: The nested type `M' does not exist in the type `N'
2
// Line: 6
3
4
class
A
5
{
6
class
B
:
N
.
M
7
{
8
}
9
}
10
11
class
N
12
{
13
public const string
S
=
"1"
;
14
}