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
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs0305-8.cs
blob
6a464323d256c72b00599ead51557dc9414388ed
1
// CS0305: Using the generic type `N<T>' requires `1' type argument(s)
2
// Line: 12
3
4
class
N
<
T
>
5
{
6
}
7
8
class
C
9
{
10
public static void
Main
()
11
{
12
global
::
N n
=
null
;
13
}
14
}