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
Merge pull request #2314 from lambdageek/dev/local-handles
[mono-project.git]
/
mcs
/
errors
/
cs0305.cs
blob
5aa69a5660f75b3bbce8e366845891189f4d0e00
1
// CS0305: Using the generic type `N1.A<T>' requires `1' type argument(s)
2
// Line: 12
3
namespace
N1
4
{
5
class
A
<
T
>
6
{
7
}
8
}
9
10
namespace
N3
11
{
12
using
W
=
N1
.
A
;
13
14
class
X
15
{
16
static void
Main
()
17
{
18
}
19
}
20
}