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
Warnings cleanup
[mcs.git]
/
errors
/
cs0400.cs
blob
c6609dad256697a2f27a077e153945763abc3770
1
// cs0400.cs: The type or namespace name `N' could not be found in the global namespace (are you missing an assembly reference?)
2
// Line: 8
3
4
class
C
5
{
6
public static void
Main
()
7
{
8
global
::
N n
=
null
;
9
}
10
}