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
2010-05-13 Rodrigo Kumpera <rkumpera@novell.com>
[mono-project.git]
/
mcs
/
tests
/
gtest-299.cs
blob
fbaa9c4f03b149a915f829c92cde68778d70b8a7
1
using
System
;
2
using
X
=
N
;
3
namespace
N { class A {}
}
4
class
B
<
T
>
{ }
5
class
Test
{
6
static public
B
<
X
::
A
>
q
;
7
static void
Main
()
8
{
9
q
=
new
B
<
N
.
A
> ();
10
if
(
typeof
(
B
<
X
::
A
>) !=
typeof
(
B
<
X
.
A
>))
11
throw new
Exception
(
"huh"
);
12
}
13
}