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
2009-11-20 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
gcs0246-2.cs
blob
f5ce9f7c099080bbf06a83abf76c090ca1ceb7cf
1
// gcs0246.cs: The type or namespace name `List`2' could not be found. Are you missing a using directive or an assembly reference?
2
// Line: 8
3
4
using
System
.
Collections
.
Generic
;
5
6
class
X
7
{
8
List
<
int
,
long
>
list
;
9
}