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 #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0400.cs
blob
e279709e45513be6a3807a04f5ecdf6614713870
1
// CS0400: 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
}