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
[Http]: Cosmetic, remove some dead code.
[mono-project.git]
/
mcs
/
errors
/
cs0305-2.cs
blob
2bdeeacda6e3c003325b6dfc2bf93a67d23f3af5
1
// CS0305: Using the generic type `Stack<T>' requires `1' type argument(s)
2
// Line: 11
3
4
class
Stack
<
T
> {
5
}
6
7
class
Test
{
8
}
9
10
class
T
{
11
Stack
<
Test
,
Test
>
a
;
12
13
static void
Main
()
14
{
15
}
16
}