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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0305-3.cs
blob
693c1919a0ffa1d37d2125f5be3dadfbe9b8e681
1
// CS0305: Using the generic type `Stack<T>' requires `1' type argument(s)
2
// Line: 9
3
4
class
Stack
<
T
>
5
{ }
6
7
class
X
8
{
9
Stack stack
;
10
}