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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
errors
/
cs0308.cs
blob
de8daf16cb95613549e71cf1a658b6623ff842f8
1
// CS0308: The non-generic type `N1.A' cannot be used with the type arguments
2
// Line: 11
3
namespace
N1
4
{
5
class
A
6
{ }
7
}
8
9
namespace
N3
10
{
11
using
W
=
N1
.
A
<
int
>;
12
13
class
X
14
{
15
static void
Main
()
16
{
17
}
18
}
19
}