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
2010-01-31 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
gcs0308-4.cs
blob
e96039ab91486dc90a4a9ef6b908aac6090e690c
1
// CS0308: The non-generic type `Stack' cannot be used with the type arguments
2
// Line: 9
3
4
class
Stack
5
{ }
6
7
class
X
8
{
9
Stack
<
float
>
stack
;
10
}