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-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
gcs0305-4.cs
blob
2697abecda04d3138cc8591c46d7d62f30c7ab9f
1
// CS0305: Using the generic type `A.B<T>' requires `1' type argument(s)
2
// Line: 12
3
4
class
A
5
{
6
class
B
<
T
>
7
{
8
}
9
10
static void
Main
()
11
{
12
B b
=
new
B
<
A
>();
13
}
14
}