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
[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git]
/
mcs
/
errors
/
cs0305-6.cs
blob
8e37f48c091dfd2582704a9696a2b29688ef40c1
1
// CS0305: Using the generic type `System.Collections.Generic.List<T>' requires `1' type argument(s)
2
// Line: 8
3
4
using
System
.
Collections
.
Generic
;
5
6
class
X
7
{
8
List
<
int
,
long
>
list
;
9
}