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
2010-04-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs0307-2.cs
blob
dcabfe84abc5a01f87d92aafad5e6f5264e65fb2
1
// CS0307: The namespace `N.M' cannot be used with type arguments
2
// Line: 15
3
4
namespace
N
5
{
6
namespace
M
7
{
8
}
9
}
10
11
class
Test
12
{
13
static void
Main
()
14
{
15
var
a
=
N
.
M
<
int
> ();
16
}
17
}