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 #1861 from saper/home-override
[mono-project.git]
/
mcs
/
tests
/
gtest-615.cs
blob
f20ee5733e3eddca7a8fa6b87a35dd947d3dc7b8
1
// Compiler options: -unsafe
2
3
unsafe class
X
4
{
5
struct
S
6
{
7
}
8
9
public class
N
<
T
>
10
{
11
S
*
s
;
12
}
13
}
14
15
public class
C
16
{
17
public static void
Main
()
18
{
19
new
X
.
N
<
int
> ();
20
}
21
}